[maemo-commits] [maemo-commits] r16273 - projects/haf/trunk/sapwood
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Mon Sep 29 16:53:59 EEST 2008
- Previous message: [maemo-commits] r16272 - in projects/haf/branches/hildon-thumbnail/daemonize: . albumart-providers albumart-providers/googleimages tests
- Next message: [maemo-commits] r16274 - in projects/haf/trunk/sapwood: . demos engine
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Previous message: [maemo-commits] r16272 - in projects/haf/branches/hildon-thumbnail/daemonize: . albumart-providers albumart-providers/googleimages tests
- Next message: [maemo-commits] r16274 - in projects/haf/trunk/sapwood: . demos engine
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]