Changeset: b723320a1e68 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b723320a1e68
Modified Files:
        configure.ag
Branch: Dec2011
Log Message:

configure: Fix up prefix variable before using it to expand other variables.
If configure is run without a --prefix argument, the internal value
for the prefix variable is NONE until right at the end of the script.
This means that expansions we do to get the "E*" variables got the
value NONE in them instead of what the prefix defaults to.


diffs (11 lines):

diff --git a/configure.ag b/configure.ag
--- a/configure.ag
+++ b/configure.ag
@@ -2799,6 +2799,7 @@ AC_SUBST(libxml2version)
 
 dnl provide different versions of the paths derived above
 if test "${prefix}x" = "NONEx"; then
+       prefix="${ac_default_prefix}"
        Xprefix="`$translatepath "$Qprefix"`"
        QXprefix="`echo "$Xprefix" | sed 's/\\\\/\\\\\\\\/g'`"
 else
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to