summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2010-02-02 14:55:36 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2010-02-02 14:55:36 +0000
commit2ff698ce1d4f792388e320bfba0b07779eba1b4f (patch)
tree98812a3f9555675c14997b22dde9fe99806ebedb
parent84fb892f0ac76905b7af4d9aa235322442fd3930 (diff)
downloadzsh-2ff698ce1d4f792388e320bfba0b07779eba1b4f.tar.gz
zsh-2ff698ce1d4f792388e320bfba0b07779eba1b4f.zip
Andrei, 27644, ish: check for #! without a fork
-rw-r--r--ChangeLog7
-rwxr-xr-xConfig/installfns.sh9
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0819c2fc9..53690b5e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-02-02 Peter Stephenson <pws@csr.com>
+
+ * based on Andrei, 27644: Config/installfns.zsh: check for
+ #! line without a fork.
+
2010-02-01 Peter Stephenson <pws@csr.com>
* unposted: Etc/FAQ.yo: update with notes on
@@ -12657,5 +12662,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.4877 $
+* $Revision: 1.4878 $
*****************************************************
diff --git a/Config/installfns.sh b/Config/installfns.sh
index 677a8fbfe..cf587c438 100755
--- a/Config/installfns.sh
+++ b/Config/installfns.sh
@@ -46,8 +46,11 @@ for file in $allfuncs; do
fi
test -d $instdir || /bin/sh $sdir_top/mkinstalldirs $instdir || exit 1
$INSTALL_DATA $sdir_top/$file $instdir || exit 1
- if sed -ne '1p' $sdir_top/$file | grep '^#!' >/dev/null; then
- chmod +x $instdir/`echo $file | sed -e 's%^.*/%%'`
- fi
+ read line < $sdir_top/$file
+ case "$line" in
+ '#!'*)
+ chmod +x $instdir/`echo $file | sed -e 's%^.*/%%'`
+ ;;
+ esac
fi
done