Update of /cvsroot/pure-data/externals/iem/iemmatrix/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19820
Modified Files: configure.ac Log Message: changed checks for STRIP (but really look at how we did that in Gem)
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/externals/iem/iemmatrix/src/configure.ac,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** configure.ac 15 Sep 2005 12:02:54 -0000 1.4 --- configure.ac 20 Sep 2005 08:14:41 -0000 1.5 *************** *** 118,132 **** then STRIP=${host}-strip - if $(which ${host}-strip > /dev/null) - then - : - else - STRIP="echo fake strip" - fi else ! STRIP=strip fi fi ! dnl STRIP=${STRIP:=strip}
DFLAGS="" --- 118,132 ---- then STRIP=${host}-strip else ! # we need a method to check arguments for arbitrary commands like strip ! STRIP="strip" fi fi ! if $(which ${STRIP} > /dev/null) ! then ! STRIPFLAGS="--strip-uneeded" ! else ! STRIP="echo fake strip" ! fi
DFLAGS=""