From: kramm Date: Sun, 7 Jan 2007 20:33:40 +0000 (+0000) Subject: disable stripping if "strip" not found X-Git-Tag: release-0-8-0~56 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=ccec950c0c9c79e62473816c72b3e27be98567c8 disable stripping if "strip" not found --- 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)