X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=Makefile;h=f9c9ffee1fe4e442c260cba4459e5ca7651a9d5e;hb=4d9402e88c11551f0b468012fce32e726d47589d;hp=880b463df64eeecb619f90a30e7b076cd6b19d70;hpb=fdd8036ba32ad88e83a61191cc4597ae060355d2;p=live-boot-grml.git diff --git a/Makefile b/Makefile index 880b463..f9c9ffe 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +1,29 @@ # Makefile -BUILD_SYSTEM := $(shell lsb_release --short --id) - TRANSLATIONS="it" all: build test: + # Checking for syntax errors set -e; for SCRIPT in bin/* hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \ do \ sh -n $$SCRIPT; \ done + # Checking for bashisms (temporary not failing, but only listing) + if [ -x /usr/bin/checkbashisms ]; \ + then \ + checkbashisms bin/* hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/* || true; \ + else \ + echo "bashism test skipped - you need to install devscripts."; \ + fi + build: - # Setting BUILD_SYSTEM - sed -e 's/\(BUILD_SYSTEM="\).*"/\1'$(BUILD_SYSTEM)'"/g' conf/live.conf > live.conf install: test build # Installing configuration - install -D -m 0644 live.conf $(DESTDIR)/etc/live.conf + install -D -m 0644 conf/live.conf $(DESTDIR)/etc/live.conf # Installing executables mkdir -p $(DESTDIR)/sbin @@ -106,17 +111,16 @@ uninstall: rm -f $(DESTDIR)/usr/share/man/man7/live-login.7.gz update: - set -e; for FILE in docs/parameters.txt manpages/*.en.*; \ + set -e; for FILE in docs/parameters.txt; \ do \ - sed -i -e 's/2007\\-09\\-10/2007\\-09\\-17/' \ - -e 's/2007-09-10/2007-09-17/' \ - -e 's/10.09.2007/17.09.2007/' \ - -e 's/1.99.2/1.99.3/' \ + sed -i -e 's/2007\\-11\\-19/2007\\-11\\-26/' \ + -e 's/2007-11-19/2007-11-26/' \ + -e 's/19.11.2007/26.11.2007/' \ + -e 's/1.111.1/1.111.2/' \ $$FILE; \ done clean: - rm -f live.conf distclean: