search for: lt_unmangl

Displaying 1 result from an estimated 1 matches for "lt_unmangl".

Did you mean: lt_unmangle
2009 Jul 13
2
[PATCH] Add shave support
...HAVE_INIT(.,disable) + AC_OUTPUT([ Makefile src/Makefile diff --git a/shave-libtool.in b/shave-libtool.in new file mode 100644 index 0000000..1f3a720 --- /dev/null +++ b/shave-libtool.in @@ -0,0 +1,69 @@ +#!/bin/sh + +# we need sed +SED=@SED@ +if test -z "$SED" ; then +SED=sed +fi + +lt_unmangle () +{ + last_result=`echo $1 | $SED -e 's#.libs/##' -e 's#[0-9a-zA-Z_\-\.]*_la-##'` +} + +# the real libtool to use +LIBTOOL="$1" +shift + +# if 1, don't print anything, the underlaying wrapper will do it +pass_though=0 + +# scan the arguments, keep the right ones f...