diff options
author | Daniel Baumann <daniel@debian.org> | 2009-11-15 21:34:17 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2009-11-22 14:38:29 +0100 |
commit | 5107fd236fb078b23c0e239c5ab6ffdaef98bc49 (patch) | |
tree | 3408e52f0c51b4f4b53a55929340c22c71fd2b9d /Makefile | |
parent | a62f12110b19a52a58d7eae871012202cfa16055 (diff) | |
download | vyos-live-build-5107fd236fb078b23c0e239c5ab6ffdaef98bc49.tar.gz vyos-live-build-5107fd236fb078b23c0e239c5ab6ffdaef98bc49.zip |
Renaming functions.sh to live-helper.sh.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,7 +8,7 @@ all: test install test: # Checking for syntax errors - for SCRIPT in functions.sh functions/* examples/*/*.sh helpers/* hooks/*; \ + for SCRIPT in live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \ do \ sh -n $$SCRIPT; \ done @@ -16,7 +16,7 @@ test: # Checking for bashisms if [ -x /usr/bin/checkbashisms ]; \ then \ - checkbashisms functions.sh functions/* examples/*/*.sh helpers/* hooks/*; \ + checkbashisms live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \ else \ echo "WARNING: skipping bashism test - you need to install devscripts."; \ fi @@ -31,7 +31,7 @@ install: # Installing shared data mkdir -p $(DESTDIR)/usr/share/live-helper - cp -r data examples functions.sh functions hooks includes lists templates $(DESTDIR)/usr/share/live-helper + cp -r data examples live-helper.sh functions hooks includes lists templates $(DESTDIR)/usr/share/live-helper # Installing documentation mkdir -p $(DESTDIR)/usr/share/doc/live-helper |