diff options
| -rw-r--r-- | Makefile | 23 |
1 files changed, 10 insertions, 13 deletions
@@ -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." |
