From: Theodore Tso Date: Fri, 21 Jun 1996 15:30:56 +0000 (+0000) Subject: Call macfiles.sh explicitly using /bin/sh, so that it works even if X-Git-Tag: krb5-1.0-beta7~336 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=338187d7930c688767f24e15a9d1e5551f7c1d5e;p=krb5.git Call macfiles.sh explicitly using /bin/sh, so that it works even if the script doesn't have execute permission set. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8532 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/mac/ChangeLog b/src/mac/ChangeLog index 0444967d8..fc7a3be0f 100644 --- a/src/mac/ChangeLog +++ b/src/mac/ChangeLog @@ -1,3 +1,9 @@ +Fri Jun 21 11:29:40 1996 Theodore Y. Ts'o + + * 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 * Makefile.tmpl: Added compile/link lines to build a PowerPC CFM diff --git a/src/mac/macfiles.sh b/src/mac/macfiles.sh index f2fb8d864..cd19aa1f1 100644 --- a/src/mac/macfiles.sh +++ b/src/mac/macfiles.sh @@ -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