Since all (false positives for) bashisms are gone, making the test target fail on bashisms.

This commit is contained in:
Daniel Baumann 2011-08-08 20:59:45 +02:00
parent 1566a511b0
commit d0663f3cbd
1 changed files with 1 additions and 2 deletions

View File

@ -19,14 +19,13 @@ test:
@echo " done."
@# We can't just fail yet on bashisms (FIXME)
@echo -n "Checking for bashisms"
@if [ -x /usr/bin/checkbashisms ]; \
then \
for SCRIPT in $(SCRIPTS); \
do \
checkbashisms -f -x $${SCRIPT} || true; \
checkbashisms -f -x $${SCRIPT}; \
echo -n "."; \
done; \
else \