You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2004/09/09 20:48:44 UTC

svn commit: rev 43622 - spamassassin/trunk/build

Author: felicity
Date: Thu Sep  9 11:48:43 2004
New Revision: 43622

Modified:
   spamassassin/trunk/build/update_devel
Log:
*sum.pl should get the file not STDIN

Modified: spamassassin/trunk/build/update_devel
==============================================================================
--- spamassassin/trunk/build/update_devel	(original)
+++ spamassassin/trunk/build/update_devel	Thu Sep  9 11:48:43 2004
@@ -56,8 +56,8 @@
 for ext in tar.bz2 tar.gz zip ; do
   cp $DISTVNAME.$ext $DEVDIR
 
-  build/md5sum.pl < $DISTVNAME.$ext > $DEVDIR/$DISTVNAME.$ext.md5  || exit $?
-  build/sha1sum.pl < $DISTVNAME.$ext > $DEVDIR/$DISTVNAME.$ext.sha1 || exit $?
+  build/md5sum.pl $DISTVNAME.$ext > $DEVDIR/$DISTVNAME.$ext.md5  || exit $?
+  build/sha1sum.pl $DISTVNAME.$ext > $DEVDIR/$DISTVNAME.$ext.sha1 || exit $?
 
   rm -f $DISTVNAME.$ext.asc*
   if [ -x "$GPGSIGN" ]; then