diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-02-09 21:25:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-02-09 21:25:15 +0000 |
commit | 98f6d6a8ebd80e9223a4e213a85fd3d0cf1c4190 (patch) | |
tree | 5ae31c466e5447fc053cbda9e7699a042ade7e0c /utils | |
parent | a2f2c3ab791be3ca05184f3df1fa44d7950b672c (diff) |
dont force -Wl,-s when building host utils -- people can strip themselves
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/Makefile.in b/utils/Makefile.in index 8023a2843..a4c104a47 100644 --- a/utils/Makefile.in +++ b/utils/Makefile.in @@ -52,21 +52,21 @@ ifeq ($(LDSO_CACHE_SUPPORT),y) LDSO_CACHE_SUPPORT := -D__LDSO_CACHE_SUPPORT__=1 endif -BUILD_CFLAGS-ldconfig.host := -Wl,-s \ +BUILD_CFLAGS-ldconfig.host := \ -include $(top_srcdir)include/elf.h \ -I$(top_srcdir)ldso/include \ -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \ -DUCLIBC_LDSO=$(UCLIBC_LDSO) \ $(LDSO_CACHE_SUPPORT) \ -BUILD_CFLAGS-ldd.host := -Wl,-s \ +BUILD_CFLAGS-ldd.host := \ -include $(top_srcdir)include/elf.h \ -I$(top_srcdir)ldso/include \ -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \ -DUCLIBC_LDSO=$(UCLIBC_LDSO) \ $(LDSO_CACHE_SUPPORT) \ -BUILD_CFLAGS-readelf.host := -Wl,-s \ +BUILD_CFLAGS-readelf.host := \ -include $(top_srcdir)include/elf.h \ |