You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/12/19 00:53:39 UTC

svn commit: r357568 - /spamassassin/trunk/build/mkupdates/run_part2

Author: jm
Date: Sun Dec 18 15:53:36 2005
New Revision: 357568

URL: http://svn.apache.org/viewcvs?rev=357568&view=rev
Log:
a little more

Modified:
    spamassassin/trunk/build/mkupdates/run_part2

Modified: spamassassin/trunk/build/mkupdates/run_part2
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/mkupdates/run_part2?rev=357568&r1=357567&r2=357568&view=diff
==============================================================================
--- spamassassin/trunk/build/mkupdates/run_part2 (original)
+++ spamassassin/trunk/build/mkupdates/run_part2 Sun Dec 18 15:53:36 2005
@@ -32,7 +32,7 @@
 # to what's installed
 # TODO: this *would* be performed in a checkout of the desired
 # version's branch
-$PERL Makefile.PL PREFIX=$tmpdir         || exit $?
+$PERL Makefile.PL PREFIX=$tmpdir < /dev/null || exit $?
 make                                     || exit $?
 make install                             || exit $?
 
@@ -48,7 +48,7 @@
 # ensure non-empty
 [ -s $tmpdir/update.tgz ] || exit 3
 # ensure valid tarfile
-tar tf $tmpdir/update.tgz || exit 4
+gunzip -cd < $tmpdir/update.tgz | tar tf - || exit 4
 
 
 # TODO: sign!  currently requires passphrase, this is a problem