From 7d94983b2e0c55e9d6fa9bc39c102c5b8b8dd468 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 5 Feb 2003 10:43:11 +0000 Subject: [PATCH] give output when building a cvs release --- m4/openbox.m4 | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/m4/openbox.m4 b/m4/openbox.m4 index f4ef76fa..645301fd 100644 --- a/m4/openbox.m4 +++ b/m4/openbox.m4 @@ -12,10 +12,16 @@ AC_DEFUN([OB_DEBUG], [DEBUG=$enableval],[]) # cvs builds are always debug - test "${VERSION%*cvs}" != "$VERSION" && DEBUG="yes" - + CVS="" + test "${VERSION%*cvs}" != "$VERSION" && CVS="yes" + test "$CVS" = "yes" && DEBUG="yes" + if test "$DEBUG" = "yes"; then - AC_MSG_RESULT([DEBUG]) + if test "$CVS" = "yes"; then + AC_MSG_RESULT([DEBUG (CVS build)]) + else + AC_MSG_RESULT([DEBUG]) + fi AC_DEFINE([DEBUG], [1], [Creating a debug build]) else AC_MSG_RESULT([RELEASE]) -- 2.44.0