]> Dogcows Code - chaz/openbox/commitdiff
caps for giving the build target. show it at the end
authorDana Jansens <danakj@orodu.net>
Sat, 11 Jan 2003 04:58:31 +0000 (04:58 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 11 Jan 2003 04:58:31 +0000 (04:58 +0000)
configure.ac
m4/openbox.m4

index d1897322772b7a16ecc859ff82a48b609d7829b0..7a2e5c5e90fbbc40ebf5b359830adf710d542984 100644 (file)
@@ -56,6 +56,11 @@ AC_MSG_RESULT
 AC_MSG_RESULT([$PACKAGE version $VERSION configured successfully.])
 
 AC_MSG_RESULT
+if test "$DEBUG" = "yes"; then
+  AC_MSG_RESULT([Creating a DEBUG build.])
+else
+  AC_MSG_RESULT([Creating a RELEASE build.])
+fi
 AC_MSG_RESULT([Using '$prefix' for installation.])
 AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
 AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
index 6c56f768a53089fb9fe8add5ce3e86238ee042f1..d30b837472309655cd276f3ff5d11de04fac2a2a 100644 (file)
@@ -16,10 +16,10 @@ AC_DEFUN([OB_DEBUG],
   
   if test "$DEBUG" = "yes"; then
     AC_MSG_RESULT([debug])
-    AC_DEFINE([DEBUG], [1], [Creating a debug build])
+    AC_DEFINE([DEBUG], [1], [Creating a DEBUG build])
   else
     AC_MSG_RESULT([release])
-    AC_DEFINE([NDEBUG], [1], [Creating a release build])
+    AC_DEFINE([NDEBUG], [1], [Creating a RELEASE build])
   fi
 ])
 
This page took 0.026127 seconds and 4 git commands to generate.