From c31379aa811735cf4dc21dc4d50c15606bcbb107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 20 Sep 2005 08:14:41 +0000 Subject: changed checks for STRIP (but really look at how we did that in Gem) svn path=/trunk/externals/iem/iemmatrix/; revision=3602 --- src/configure.ac | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/configure.ac') diff --git a/src/configure.ac b/src/configure.ac index 0cc015b..162b4f9 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -117,17 +117,17 @@ then if test "x$host" != "x" then STRIP=${host}-strip - if $(which ${host}-strip > /dev/null) - then - : - else - STRIP="echo fake strip" - fi else - STRIP=strip +# we need a method to check arguments for arbitrary commands like strip + STRIP="strip" fi fi -dnl STRIP=${STRIP:=strip} +if $(which ${STRIP} > /dev/null) +then + STRIPFLAGS="--strip-uneeded" +else + STRIP="echo fake strip" +fi DFLAGS="" -- cgit v1.2.1