From 060e1748aefb7eea882607732511afd4043e938f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 26 Jul 2010 23:05:09 +0200 Subject: [PATCH] Don't fail in Makefile when there's no checkbashism. --- Makefile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index b24d4f8..915f864 100644 --- a/Makefile +++ b/Makefile @@ -19,27 +19,24 @@ test: @echo " done." - @if [ ! -x "$$(which checkbashisms 2>/dev/null)" ]; \ + @# We can't just fail yet on bashisms (FIXME) + @if [ -x "$$(which checkbashisms 2>/dev/null)" ]; \ then \ + echo -n "Checking for bashisms"; \ + for SCRIPT in $(SCRIPTS); \ + do \ + checkbashisms -f -x $${SCRIPT} || true; \ + echo -n "."; \ + done; \ + echo " done."; \ + else \ echo "W: checkbashisms - command not found"; \ echo "I: checkbashisms can be optained from: "; \ echo "I: http://git.debian.org/?p=devscripts/devscripts.git"; \ echo "I: On Debian systems, checkbashisms can be installed with:"; \ echo "I: apt-get install devscripts"; \ - exit 0; \ fi - @echo -n "Checking for bashisms" - - @# We can't just fail yet on bashisms (FIXME) - @for SCRIPT in $(SCRIPTS); \ - do \ - checkbashisms -f -x $${SCRIPT} || true; \ - echo -n "."; \ - done - - @echo " done." - build: @echo "Nothing to build." -- 2.1.4