From: Gary V. Vaughan Date: Fri, 13 Feb 2004 00:31:05 +0000 (+0000) Subject: * commit (MKSTAMP): Look for mkstamp in the right place. X-Git-Tag: release-1-5-4~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48d911d6ca1ba922c4c8b8a185639c8941bf3ba7;p=thirdparty%2Flibtool.git * commit (MKSTAMP): Look for mkstamp in the right place. --- diff --git a/ChangeLog b/ChangeLog index 8e3286220..416eb06fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-02-13 Gary V. Vaughan + + * commit (MKSTAMP): Look for mkstamp in the right place. + 2004-02-12 Scott James Remnant * ltmain.in, libtoolize.in, commit, mailnotify: Remove diff --git a/commit b/commit index 0df38c221..e6c0a9cb7 100755 --- a/commit +++ b/commit @@ -68,7 +68,8 @@ : ${CVS="cvs"} : ${SHELL="/bin/sh"} -: ${MAILNOTIFY="$SHELL ./mailnotify"} +: ${MAILNOTIFY="./mailnotify"} +: ${MKSTAMP="./mkstamp"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SED="sed"} @@ -436,8 +437,8 @@ if test -n "$sendmail_to"; then { test -f CVS/Root && echo "CVSROOT: `sed -e 's,.*:,,g' CVS/Root`" - test -f ./config/mkstamp && - echo "TIMESTAMP: `./config/mkstamp < ./ChangeLog`" + test -f $MKSTAMP && + echo "TIMESTAMP: `$SHELL $MKSTAMP < ./ChangeLog`" test -f CVS/Repository && echo "Module name: `cat CVS/Repository`" test -f CVS/Tag && @@ -451,9 +452,9 @@ if test -n "$sendmail_to"; then } > "$notify_file" if test -n "$sendmail_from"; then - $MAILNOTIFY -F "$sendmail_from" -s "`echo $filelist`" -f "$notify_file" -m "text/plain" "$sendmail_to" + $SHELL $MAILNOTIFY -F "$sendmail_from" -s "`echo $filelist`" -f "$notify_file" -m "text/plain" "$sendmail_to" else - $MAILNOTIFY -s "`echo $filelist`" -f "$notify_file" -m "text/plain" "$sendmail_to" + $SHELL $MAILNOTIFY -s "`echo $filelist`" -f "$notify_file" -m "text/plain" "$sendmail_to" fi fi