svn commit: trunk/uClibc

vapier at uclibc.org vapier at uclibc.org
Wed Nov 2 02:20:14 UTC 2005


Author: vapier
Date: 2005-11-01 18:20:13 -0800 (Tue, 01 Nov 2005)
New Revision: 12107

Log:
set default STRIP_FLAGS and change how we detect silent mode

Modified:
   trunk/uClibc/Rules.mak


Changeset:
Modified: trunk/uClibc/Rules.mak
===================================================================
--- trunk/uClibc/Rules.mak	2005-11-02 01:13:08 UTC (rev 12106)
+++ trunk/uClibc/Rules.mak	2005-11-02 02:20:13 UTC (rev 12107)
@@ -49,6 +49,8 @@
 LN         = ln
 RM         = rm -f
 
+STRIP_FLAGS ?= -x -R .note -R .comment
+
 # Select the compiler needed to build binaries for your development system
 HOSTCC     = gcc
 HOSTCFLAGS = -O2 -Wall
@@ -94,7 +96,7 @@
 	then echo "-Wa,$(1)"; fi)
 
 # Setup some shortcuts so that silent mode is silent like it should be
-ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS))
+ifeq ($(findstring s,$(MAKEFLAGS)),)
 export MAKE_IS_SILENT=n
 SECHO=@echo
 SHELL_SET_X=set -x




More information about the uClibc-cvs mailing list