]> git.marmaro.de Git - mmh/commitdiff
* test/setup-test: Don't run autogen.sh unless needed. Build in a
authorEric Gillespie <epg@pretzelnet.org>
Thu, 14 Aug 2008 19:47:29 +0000 (19:47 +0000)
committerEric Gillespie <epg@pretzelnet.org>
Thu, 14 Aug 2008 19:47:29 +0000 (19:47 +0000)
blddir under the temporary directory so as not to interfere with
whatever the developer may be doing in the source directory.
If the temporary directory already exists, rebuild and install it.

ChangeLog
test/setup-test

index 60587481370112429971a1c7baef9a25042710cd..d7a943302911d24c29c343cd62ece73db4f7a701 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-08-14  Eric Gillespie  <epg@pretzelnet.org>
+
+       * test/setup-test: Don't run autogen.sh unless needed.  Build in a
+       blddir under the temporary directory so as not to interfere with
+       whatever the developer may be doing in the source directory.
+       If the temporary directory already exists, rebuild and install it.
+
 2008-08-13  Eric Gillespie  <epg@pretzelnet.org>
 
        * sbr/ambigsw.c: Send print_sw output to stderr.  This avoids
index 00ad57a03b1dae26bd18bf8d03629cf9c666a7e7..a99c6c7e7f6be97ad0bb6e344b59b5e3aabbcbad 100755 (executable)
@@ -2,13 +2,23 @@
 
 set -e
 
+if TEMPDIR=`cat test-temp-dir 2> /dev/null` \
+   && [ -e $TEMPDIR/bld/Makefile ]; then
+    (cd $TEMPDIR/bld && make all install)
+    exit
+fi
+
 TEMPDIR=`mktemp -d /tmp/nmh-test-XXXXXXXX`
 echo $TEMPDIR > test-temp-dir
 
 cd ..
-./autogen.sh
-./configure --prefix=$TEMPDIR --with-locking=fcntl --enable-debug
-make clean
+if ! [ -e configure ]; then
+    ./autogen.sh
+fi
+srcdir=$PWD
+mkdir $TEMPDIR/bld
+cd $TEMPDIR/bld
+$srcdir/configure --prefix=$TEMPDIR --with-locking=fcntl --enable-debug
 make install
 
 echo "Path: $TEMPDIR/Mail" > $TEMPDIR/mh_profile