Monotone-Parent: 8851e1ba92912fede3c168667dc97ec1cf452185

Monotone-Revision: 4e153226c6bdcf35ab3421e5297e21ab2ea4d8ea

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-10-01T14:29:24
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-10-01 14:29:24 +00:00
parent e9fe5edc93
commit 3f00e45c4c

9
configure vendored
View File

@@ -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