diff options
author | Bill Nottingham <notting@redhat.com> | 2000-06-12 15:07:21 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-06-12 15:07:21 +0000 |
commit | 6d708ac64fb55a0289f76a3e2892b57a9746dd6a (patch) | |
tree | 0d00fbcb6b5b4ad40fa56c1e4fc71adb6890f7f4 | |
parent | a869b8004ab5f468f5be4575745a55404360426c (diff) | |
download | initscripts-6d708ac64fb55a0289f76a3e2892b57a9746dd6a.tar initscripts-6d708ac64fb55a0289f76a3e2892b57a9746dd6a.tar.gz initscripts-6d708ac64fb55a0289f76a3e2892b57a9746dd6a.tar.bz2 initscripts-6d708ac64fb55a0289f76a3e2892b57a9746dd6a.tar.xz initscripts-6d708ac64fb55a0289f76a3e2892b57a9746dd6a.zip |
fix bash-1 ismr5-16
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ install: check: for afile in `find . -type f -perm +111|grep -v \.csh ` ; do \ if ! file $$afile | grep -s ELF >/dev/null; then \ - bash -n $$afile || { echo $$afile ; exit 1 } ; \ + bash -n $$afile || { echo $$afile ; exit 1 ; } ; \ fi ;\ done |