all repos — openbox @ 7d94983b2e0c55e9d6fa9bc39c102c5b8b8dd468

openbox fork - make it a bit more like ryudo

give output when building a cvs release
Dana Jansens danakj@orodu.net
commit

7d94983b2e0c55e9d6fa9bc39c102c5b8b8dd468

parent

1d4cff7d1e59a9851ce380b51a4bf2393e698fc5

1 files changed, 9 insertions(+), 3 deletions(-)

jump to
M m4/openbox.m4m4/openbox.m4

@@ -12,10 +12,16 @@ [ --enable-debug build a debug version default=no],

[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])