From: Eric Gillespie Date: Thu, 14 Aug 2008 19:47:29 +0000 (+0000) Subject: * test/setup-test: Don't run autogen.sh unless needed. Build in a X-Git-Tag: PRE_POSIX_CONVERSION~23 X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=745184ce4dfd76dfe3edd5289bd638e599e0892e;p=mmh * 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. --- diff --git a/ChangeLog b/ChangeLog index 60587481..d7a94330 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-08-14 Eric Gillespie + + * 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 * sbr/ambigsw.c: Send print_sw output to stderr. This avoids diff --git a/test/setup-test b/test/setup-test index 00ad57a0..a99c6c7e 100755 --- a/test/setup-test +++ b/test/setup-test @@ -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