]> granicus.if.org Git - fcron/commitdiff
moved bootinstall after debug, as the former depends on the latter
authorthib <thib>
Thu, 29 Apr 2004 20:50:24 +0000 (20:50 +0000)
committerthib <thib>
Thu, 29 Apr 2004 20:50:24 +0000 (20:50 +0000)
configure.in

index 650b893a73936e562bec1254c48fcc828cc83eda..d3ade90d3251d569f9640bf8f989017c3de62040 100644 (file)
@@ -543,36 +543,6 @@ WARNING :
 )
 
 
-if test "$bootinstall" = ""; then
-  bootinstall=1
-fi
-AC_MSG_CHECKING(install interactively a boot script)
-AC_ARG_WITH(boot-install,
-[  --with-boot-install=[yes|no]        Install (interactively) a boot script (default: yes).],
-[ case "$withval" in
-  no)
-    bootinstall=0
-    AC_MSG_RESULT(no)
-    ;;
-  yes)
-    bootinstall=1
-    AC_MSG_RESULT(yes)
-    ;;
-  *)
-    AC_MSG_ERROR(Must be set to either "yes" or "no".)
-    ;;
-  esac ],
-    if test "$bootinstall" = "1"; then
-      AC_MSG_RESULT(yes)
-    else
-      AC_MSG_RESULT(no)
-    fi
-)
-BOOTINSTALL="$bootinstall"
-AC_DEFINE_UNQUOTED(BOOTINSTALL, "$bootinstall")
-AC_SUBST(BOOTINSTALL)
-
-
 if test "$fcrondyn" = ""; then
   fcrondyn=1
 fi
@@ -834,6 +804,36 @@ DEBUG=$debug
 AC_SUBST(DEBUG)
 
 
+if test "$bootinstall" = ""; then
+  bootinstall=1
+fi
+AC_MSG_CHECKING(install interactively a boot script)
+AC_ARG_WITH(boot-install,
+[  --with-boot-install=[yes|no]        Install (interactively) a boot script (default: yes).],
+[ case "$withval" in
+  no)
+    bootinstall=0
+    AC_MSG_RESULT(no)
+    ;;
+  yes)
+    bootinstall=1
+    AC_MSG_RESULT(yes)
+    ;;
+  *)
+    AC_MSG_ERROR(Must be set to either "yes" or "no".)
+    ;;
+  esac ],
+    if test "$bootinstall" = "1"; then
+      AC_MSG_RESULT(yes)
+    else
+      AC_MSG_RESULT(no)
+    fi
+)
+BOOTINSTALL="$bootinstall"
+AC_DEFINE_UNQUOTED(BOOTINSTALL, "$bootinstall")
+AC_SUBST(BOOTINSTALL)
+
+
 AC_ARG_WITH(cflags,
 [  --with-cflags=CFLAGS        Use CFLAGS flags to compile fcron.],
 [ case "$withval" in