Changeset: 039b0bae6575 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=039b0bae6575
Modified Files:
        buildtools/configure.ac
Branch: default
Log Message:

just use literals with AC_CONFIG_SUBDIRS, as copy pasted from the info page, 
make the entire AC_CONFIG_SUBDIRS call conditional


diffs (26 lines):

diff -r 5828109c61ad -r 039b0bae6575 buildtools/configure.ac
--- a/buildtools/configure.ac   Thu Jun 03 13:42:59 2010 +0200
+++ b/buildtools/configure.ac   Thu Jun 03 13:50:34 2010 +0200
@@ -48,11 +48,6 @@
                [Burg is only needed for MonetDB/XQuery]),
        [enable_burg=$enableval],[enable_burg="yes"])
 
-case $enable_burg in
-yes)
-       burg_subdir=burg
-       ;;
-esac
 AM_CONDITIONAL([ENABLE_BURG], [test "$enable_burg" = yes])
 
 
@@ -62,6 +57,9 @@
 
 AC_SUBST([PYTHON])
 
-AC_CONFIG_SUBDIRS([Mx $burg_subdir])
+AC_CONFIG_SUBDIRS([Mx])
+if test x"$enable_burg" = x"yes" ; then
+       AC_CONFIG_SUBDIRS([burg])
+fi
 
 AC_OUTPUT
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to