diff options
author | Daniel Baumann <daniel@debian.org> | 2010-03-07 11:49:29 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:04 +0100 |
commit | 8be5f9d036bad60cf9ad7169c3e7c356aeba55b6 (patch) | |
tree | 8b40ea5ad0eff4c827c6bf1cb91196d2ddf302ef /Makefile | |
parent | 099710cbc317afa3888509ee8b09d4d403ddf72f (diff) | |
download | vyos-live-build-8be5f9d036bad60cf9ad7169c3e7c356aeba55b6.tar.gz vyos-live-build-8be5f9d036bad60cf9ad7169c3e7c356aeba55b6.zip |
Merging live-webhelper.
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 live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \ + for SCRIPT in live-helper.sh cgi/* 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 live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \ + checkbashisms live-helper.sh cgi/* functions/* examples/*/*.sh helpers/* hooks/*; \ else \ echo "WARNING: skipping bashism test - you need to install devscripts."; \ fi @@ -27,7 +27,7 @@ build: install: # Installing shared data mkdir -p $(DESTDIR)/usr/share/live-helper - cp -r data examples live-helper.sh functions helpers hooks includes lists templates $(DESTDIR)/usr/share/live-helper + cp -r cgi data examples live-helper.sh functions helpers hooks includes lists templates $(DESTDIR)/usr/share/live-helper # Installing executables mkdir -p $(DESTDIR)/usr/bin |