From: Robert Colquhoun Date: Thu, 31 May 2001 02:29:46 +0000 (+0000) Subject: Fix up bugs triggered in configure by the movement of params from VAR2 to X-Git-Tag: HYLAFAX-4_1RC1~10 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=2ee69babe987093060d438fd23124d9a58a64432;p=thirdparty%2FHylaFAX.git Fix up bugs triggered in configure by the movement of params from VAR2 to VAR1. --- diff --git a/configure b/configure index abe13071..f0662bc9 100755 --- a/configure +++ b/configure @@ -113,14 +113,17 @@ CHGRP CHMOD CHOWN CC +CCOMPILER CMP COL CP CXX +CXXCOMPILER CXXFILE DATE DBLIB DBLIBINC +DEFPAGESIZE DEFVRES DIST_ALPHA DIST_MAJOR @@ -1337,10 +1340,9 @@ fi makeDefs() { - $RM confsed1 WARNING="Warning, this file was automatically created by the HylaFAX configure script" - dumpvars "$VAR1" CCOMPILER CXXCOMPILER | sort>confsed1 - dumpvars "$VAR2" CCOMPILER CXXCOMPILER | sort>confsed2 + $RM confsed1; dumpvars "$VAR1" | sort>confsed1 + $RM confsed2; dumpvars "$VAR2" | sort>confsed2 $RM xdefs; sed -f confsed1 $SRCDIR/defs.in | sed -f confsed2 >$1 } @@ -4444,7 +4446,8 @@ x="`relativize ${LIBREGEX}`"; LIBREGEX="$x" x="`relativize ${LIBDB}`"; LIBDB="$x" # NB: these should be sorted alphabetically -$RM confsed2; dumpvars "$VAR2" DEFPAGESIZE | sort > confsed2 +$RM confsed1; dumpvars "$VAR1" | sort > confsed1 +$RM confsed2; dumpvars "$VAR2" | sort > confsed2 SedConfigFiles()