[maemo-commits] [maemo-commits] r16273 - projects/haf/trunk/sapwood

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Sep 29 16:53:59 EEST 2008
Author: herzi
Date: 2008-09-29 16:53:46 +0300 (Mon, 29 Sep 2008)
New Revision: 16273

Modified:
   projects/haf/trunk/sapwood/ChangeLog
   projects/haf/trunk/sapwood/configure.in
Log:
2008-09-29  Sven Herzberg  <sven at imendio.com>

	Fix the test for the debugging flags.

	* configure.in: replace -eq (only integers) with == (strings)


Modified: projects/haf/trunk/sapwood/ChangeLog
===================================================================
--- projects/haf/trunk/sapwood/ChangeLog	2008-09-29 13:18:41 UTC (rev 16272)
+++ projects/haf/trunk/sapwood/ChangeLog	2008-09-29 13:53:46 UTC (rev 16273)
@@ -1,5 +1,11 @@
 2008-09-29  Sven Herzberg  <sven at imendio.com>
 
+	Fix the test for the debugging flags.
+
+	* configure.in: replace -eq (only integers) with == (strings)
+
+2008-09-29  Sven Herzberg  <sven at imendio.com>
+
 	Fix "make check" finally
 
 	* server/Makefile.am: don't perform abi checks anymore, it's only

Modified: projects/haf/trunk/sapwood/configure.in
===================================================================
--- projects/haf/trunk/sapwood/configure.in	2008-09-29 13:18:41 UTC (rev 16272)
+++ projects/haf/trunk/sapwood/configure.in	2008-09-29 13:53:46 UTC (rev 16273)
@@ -112,7 +112,7 @@
               [enable_debug=yes],
               [enable_debug=no])
 AC_MSG_RESULT([$enable_debug])
-if test ! -z "$enable_debug" -a "$enable_debug" -eq "yes"; then
+if test ! -z "$enable_debug" -a "$enable_debug" == "yes"; then
         AC_DEFINE([ENABLE_DEBUG],[],[Enable debugging via environment variable])
 fi
 


More information about the maemo-commits mailing list