]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* commit (MKSTAMP): Look for mkstamp in the right place.
authorGary V. Vaughan <gary@gnu.org>
Fri, 13 Feb 2004 00:37:00 +0000 (00:37 +0000)
committerGary V. Vaughan <gary@gnu.org>
Fri, 13 Feb 2004 00:37:00 +0000 (00:37 +0000)
ChangeLog
commit

index ccaaa4b0fdc5d4c1459c8d4682ea13c7077fcf4c..3fc5664d9de797351a1c1486855ac09792734f17 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-13  Gary V. Vaughan  <gary@gnu.org>
+
+       * commit (MKSTAMP): Look for mkstamp in the right place.
+
 2004-02-12  Scott James Remnant  <scott@netsplit.com>
 
        * Makefile.maint, Makefile: Move rules intended for Libtool
diff --git a/commit b/commit
index 2273a9f44eac7e05acd6e3d4240bc3f52a8ed999..094c22bdb3c3beef7d65b24988dd1c3e87084592 100755 (executable)
--- a/commit
+++ b/commit
@@ -68,7 +68,8 @@
 
 : ${CVS="cvs"}
 : ${SHELL="/bin/sh"}
-: ${MAILNOTIFY="$SHELL ./config/mailnotify"}
+: ${MAILNOTIFY="./config/mailnotify"}
+: ${MKSTAMP="./config/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