[MPlayer-cvslog] r22364 - in trunk: Makefile configure
diego
subversion at mplayerhq.hu
Tue Feb 27 18:10:11 CET 2007
Author: diego
Date: Tue Feb 27 18:10:11 2007
New Revision: 22364
Modified:
trunk/Makefile
trunk/configure
Log:
Simplify strip parameter for install handling.
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Tue Feb 27 18:10:11 2007
@@ -14,11 +14,6 @@ CFLAGS += $(CFLAGS-
#CFLAGS += -Wall
-# Do not strip the binaries at installation
-ifeq ($(STRIPBINARIES),yes)
-INSTALLSTRIP = -s
-endif
-
SRCS_COMMON = asxparser.c \
codec-cfg.c \
cpudetect.c \
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Tue Feb 27 18:10:11 2007
@@ -2193,13 +2193,13 @@ echores $_named_asm_args
# Checking for CFLAGS
-_stripbinaries=yes
+_install_strip="-s"
if test "$_profile" != "" || test "$_debug" != "" ; then
CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile"
if test "$_cc_major" -ge "3" ; then
CFLAGS=`echo "$CFLAGS" | sed -e 's/\(-Wall\)/\1 -Wno-unused-parameter/'`
fi
- _stripbinaries=no
+ _install_strip=
elif test -z "$CFLAGS" ; then
if test "$cc_vendor" = "intel" ; then
CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
@@ -7448,7 +7448,7 @@ LDCONFIG = $_ldconfig
INSTALL = $_install
EXTRA_INC = $_inc_extra
OPTFLAGS = $CFLAGS \$(EXTRA_INC)
-STRIPBINARIES = $_stripbinaries
+INSTALLSTRIP = $_install_strip
CHARSET = $_charset
HELP_FILE = $_mp_help
More information about the MPlayer-cvslog
mailing list