Call macfiles.sh explicitly using /bin/sh, so that it works even if
authorTheodore Tso <tytso@mit.edu>
Fri, 21 Jun 1996 15:30:56 +0000 (15:30 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 21 Jun 1996 15:30:56 +0000 (15:30 +0000)
the script doesn't have execute permission set.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8532 dc483132-0cff-0310-8789-dd5450dbe970

src/mac/ChangeLog
src/mac/macfiles.sh

index 0444967d86833a8ce7cd0d473f6802e3583523d2..fc7a3be0f05dd8590fb9a2edab6ef54ea69ef7d0 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun 21 11:29:40 1996  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * macfiles.sh: Call macfiles.sh explicitly using /bin/sh, so that
+               it works even if the script doesn't have execute
+               permission set.
+
 Tue Apr 30 15:04:29 1996  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * Makefile.tmpl: Added compile/link lines to build a PowerPC CFM
index f2fb8d864dfd97a18b69d9bc163339990ddfa906..cd19aa1f157f8ac227350bd2bf0f88fe2e72eb21 100644 (file)
@@ -7,6 +7,6 @@ for DIR do
     awk '/^SRCS?[      ]*=/, /[^\\]$/' $DIR/$SDIR/Makefile.in | \
       tr '     ' '\012\012' | sed -n -e 's|.*[/)]\([A-Za-z0-9_]*\.c\).*|\1|' -e 's|\(.*\.c\)|'$DIR/$SDIR'/\1|p';
     ls -1 $DIR/$SDIR/*.h 2> /dev/null
-    mac/macfiles.sh $DIR/$SDIR;
+    /bin/sh mac/macfiles.sh $DIR/$SDIR;
   done
 done