From a9740d850e95fe52b410e4518e3dc850bbf073f1 Mon Sep 17 00:00:00 2001 From: truelight Date: Sun, 7 Jan 2007 13:13:01 +0000 Subject: (svn r7961) [Configure] -Fix: "" in config params didn't survive --reconfig. They should now. --- configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index ecd13e270..f28be4a46 100755 --- a/configure +++ b/configure @@ -25,8 +25,9 @@ if [ "$1" = "--reconfig" ]; then exit 1 fi # Make sure we don't lock config.cache - configure=`cat config.cache` - $configure + cat config.cache > cache.tmp + sh cache.tmp + rm -f cache.tmp exit $? fi -- cgit v1.2.3-54-g00ecf