Fixes NixOS/hydra#402 (#424)

This commit is contained in:
montag451
2017-08-10 14:16:24 +02:00
committed by Domen Kožar
parent 7e9b6acbce
commit 48609664a5
6 changed files with 18 additions and 12 deletions

View File

@ -3,13 +3,14 @@ STATIC = \
$(wildcard static/images/*) \
$(wildcard static/css/*) \
static/js/bootbox.min.js \
static/js/common.js
static/js/common.js \
static/js/jquery/jquery-1.12.3.min.js \
static/js/jquery/jquery-ui-1.10.4.min.js
FLOT = flot-0.8.3.zip
JQUERY = jquery-ui-1.8.5.custom.zip
BOOTSTRAP = bootstrap-2.3.1.zip
ZIPS = $(FLOT) $(JQUERY) $(BOOTSTRAP)
ZIPS = $(FLOT) $(BOOTSTRAP)
EXTRA_DIST = $(TEMPLATES) $(STATIC) $(ZIPS)
@ -18,7 +19,6 @@ nobase_hydra_DATA = $(EXTRA_DIST)
all:
mkdir -p $(srcdir)/static/js
unzip -u -d $(srcdir)/static/js/jquery $(JQUERY)
unzip -u -d $(srcdir)/static $(BOOTSTRAP)
unzip -u -d $(srcdir)/static/js $(FLOT)