summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2013-11-04 07:00:25 +0100
committerDaniel Baumann <mail@daniel-baumann.ch>2013-11-04 07:06:08 +0100
commit52122b28451ec441e037e4003dfecf5ecc21853c (patch)
tree0e641a8a4aea0fa4d2f9bae428c51cf400fe91c5 /Makefile
parentafafe4628cf94f586c0adae100cb2d62ca02f701 (diff)
downloadvyos-live-build-52122b28451ec441e037e4003dfecf5ecc21853c.tar.gz
vyos-live-build-52122b28451ec441e037e4003dfecf5ecc21853c.zip
Moving python stubs to their own subdirectory within the source tree.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 5 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index b4a9c44dc..5374e0205 100644
--- a/Makefile
+++ b/Makefile
@@ -13,11 +13,8 @@ test:
@for SCRIPT in $(SCRIPTS); \
do \
- if ! head -n1 $${SCRIPT} | grep -qs python; \
- then \
- sh -n $${SCRIPT}; \
- echo -n "."; \
- fi; \
+ sh -n $${SCRIPT}; \
+ echo -n "."; \
done
@echo " done."
@@ -28,11 +25,8 @@ test:
then \
for SCRIPT in $(SCRIPTS); \
do \
- if ! head -n1 $${SCRIPT} | grep -qs python; \
- then \
- checkbashisms -f -x $${SCRIPT}; \
- echo -n "."; \
- fi; \
+ checkbashisms -f -x $${SCRIPT}; \
+ echo -n "."; \
done; \
else \
echo "WARNING: skipping bashism test - you need to install devscripts."; \
@@ -55,6 +49,7 @@ install:
mkdir -p $(DESTDIR)/usr/lib/live
cp -a scripts/* $(DESTDIR)/usr/lib/live
+ cp -a components/* $(DESTDIR)/usr/lib/live/build
# Installing documentation
mkdir -p $(DESTDIR)/usr/share/doc/live-build