From 3f00e45c4c74ddcd6bd06d83eb1741f63d90226a Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 1 Oct 2008 14:29:24 +0000 Subject: [PATCH] Monotone-Parent: 8851e1ba92912fede3c168667dc97ec1cf452185 Monotone-Revision: 4e153226c6bdcf35ab3421e5297e21ab2ea4d8ea Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-10-01T14:29:24 Monotone-Branch: ca.inverse.sogo --- configure | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/configure b/configure index c2924a135..fed1d1ad3 100755 --- a/configure +++ b/configure @@ -322,13 +322,16 @@ checkDependencies() { } runIt() { - if [ "$ARG_WITH_DEBUG" == "1" ] && [ "$ARG_WITH_STRIP" == "1" ] - then - echo "Note: Disabling stripping of symbols since debug is enabled" + DISABLED_STRIPPING=0 + if test $ARG_WITH_DEBUG = 1 && test $ARG_WITH_STRIP = 1; then + DISABLED_STRIPPING=1 ARG_WITH_STRIP=0 fi if test $ARG_BEQUIET != 1; then + if test $DISABLED_STRIPPING = 1; then + echo "Note: Disabling stripping of symbols since debug is enabled"; + fi printParas; fi