Author: sandervanderburg
Date: Sun Oct 10 15:31:40 2010
New Revision: 24206
URL: https://svn.nixos.org/websvn/nix/?rev=24206&sc=1

Log:
Fixed autoconf script to support --without properly

Modified:
   disnix/disnix-activation-scripts-nixos/trunk/configure.ac

Modified: disnix/disnix-activation-scripts-nixos/trunk/configure.ac
==============================================================================
--- disnix/disnix-activation-scripts-nixos/trunk/configure.ac   Sun Oct 10 
14:45:42 2010        (r24205)
+++ disnix/disnix-activation-scripts-nixos/trunk/configure.ac   Sun Oct 10 
15:31:40 2010        (r24206)
@@ -20,11 +20,11 @@
 # Checks for programs
 AC_PROG_INSTALL
 
-AS_IF([test "x$with_apache" != "x"],
+AS_IF([test "x$with_apache" != "x" && test "x$with_apache" != "xno"],
       [have_apache=yes],
       [have_apache=no])
 
-AS_IF([test "x$with_axis2" != "x"],
+AS_IF([test "x$with_axis2" != "x" && test "x$with_axis2" != "xno"],
       [have_axis2=yes],
       [have_axis2=no])
 
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to