From ccec950c0c9c79e62473816c72b3e27be98567c8 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 7 Jan 2007 20:33:40 +0000 Subject: [PATCH] disable stripping if "strip" not found --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 47fac70..22d9c92 100644 --- a/configure.in +++ b/configure.in @@ -185,7 +185,7 @@ fi # this must be done after (I believe) AC_PROG_MAKE_SET -if test "x$DEBUG" '!=' "x";then +if test "x$DEBUG" '!=' "x" -o "x$STRIP" = "x";then STRIP="@echo debug enabled, not stripping " export STRIP AC_SUBST(STRIP) -- 1.7.10.4