[Lunar-commits] CVS: moonbase/mail/spamassassin CONFIGURE, NONE,
1.1 BUILD, 1.5, 1.6
striker at lunar-linux.org
striker at lunar-linux.org
Mon Sep 6 06:10:31 UTC 2004
Update of /var/cvs/lunar/moonbase/mail/spamassassin
In directory espresso.lunar-linux.org:/tmp/cvs-serv15096
Modified Files:
BUILD
Added Files:
CONFIGURE
Log Message:
add option to not perform make test (which can severly slow down installation)
--- NEW FILE: CONFIGURE ---
FOO="TESTS"
if ! grep -q "$FOO" $MODULE_CONFIG; then
if query "Perform make test?" y; then
echo "$FOO=y" >> $MODULE_CONFIG
else
echo "$FOO=n" >> $MODULE_CONFIG
fi
fi
Index: BUILD
===================================================================
RCS file: /var/cvs/lunar/moonbase/mail/spamassassin/BUILD,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- BUILD 22 Aug 2003 00:56:54 -0000 1.5
+++ BUILD 6 Sep 2004 06:10:29 -0000 1.6
@@ -14,7 +14,9 @@
perl Makefile.PL CONTACT_ADDRESS="postmaster@$FQDN" RUN_RAZOR2_TESTS="n" &&
make &&
- make test &&
+ if [ "$TESTS" == "y" ]; then
+ make test
+ fi &&
prepare_install &&
make install &&
echo "" &&
More information about the Lunar-commits
mailing list