Alexandre Julliard : configure: Fix the strip command line for Mac OS.
Module: wine Branch: master Commit: 65abe18a08431d4490d6a627e2d350f0d15b6a25 URL: http://source.winehq.org/git/wine.git/?a=commit;h=65abe18a08431d4490d6a627e2... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Mon Jul 2 13:38:18 2007 +0200 configure: Fix the strip command line for Mac OS. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 3f1ff43..072565d 100755 --- a/configure +++ b/configure @@ -13171,7 +13171,7 @@ fi LDDLLFLAGS="-bundle -multiply_defined suppress" LIBWINE_LDFLAGS="-multiply_defined suppress" LDSHARED="\$(CC) -dynamiclib" - STRIP="$STRIP -u -r" + STRIP="$STRIP -x" LDRPATH_LOCAL="&& install_name_tool -change @executable_path/\`\$(RELPATH) \$(bindir) \$(libdir)\`/libwine.1.dylib @executable_path/\$(TOPOBJDIR)/libs/wine/libwine.1.dylib \$@ || \$(RM) \$@" COREFOUNDATIONLIB="-framework CoreFoundation" diff --git a/configure.ac b/configure.ac index b262128..349de58 100644 --- a/configure.ac +++ b/configure.ac @@ -950,7 +950,7 @@ case $host_os in LDDLLFLAGS="-bundle -multiply_defined suppress" LIBWINE_LDFLAGS="-multiply_defined suppress" LDSHARED="\$(CC) -dynamiclib" - STRIP="$STRIP -u -r" + STRIP="$STRIP -x" LDRPATH_LOCAL="&& install_name_tool -change @executable_path/\`\$(RELPATH) \$(bindir) \$(libdir)\`/libwine.1.dylib @executable_path/\$(TOPOBJDIR)/libs/wine/libwine.1.dylib \$@ || \$(RM) \$@" dnl declare needed frameworks AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation")
participants (1)
-
Alexandre Julliard