From f5af0df82193cd9dece51c20bd400bfef69eec11 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 4 Apr 2012 15:51:10 +0200 Subject: [PATCH] Makefile: fix syncheck skip dash syntax check, if bash found in shebang --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f0af487..80d372f 100644 --- a/Makefile +++ b/Makefile @@ -100,10 +100,10 @@ syncheck: @ret=0;for i in dracut-initramfs-restore.sh dracut-logger.sh \ modules.d/99base/init.sh modules.d/*/*.sh; do \ [ "$${i##*/}" = "module-setup.sh" ] && continue; \ - [ "$${i##*/}" = "caps.sh" ] && continue; \ + read line < "$$i"; [ "$${line#*bash*}" != "$$line" ] && continue; \ dash -n "$$i" ; ret=$$(($$ret+$$?)); \ done;exit $$ret - @ret=0;for i in *.sh mkinitrd-dracut.sh modules.d/02caps/caps.sh \ + @ret=0;for i in *.sh mkinitrd-dracut.sh modules.d/*/*.sh \ modules.d/*/module-setup.sh; do \ bash -n "$$i" ; ret=$$(($$ret+$$?)); \ done;exit $$ret -- 2.7.4