aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc/patches/150-portability.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2007-12-28 19:51:24 +0000
committerImre Kaloz <kaloz@openwrt.org>2007-12-28 19:51:24 +0000
commit2630adf92a5443c89a533fed32e912a9ca86e6f0 (patch)
tree35fe66ad70bb8d53e25bd4dbc0f3ab4a991c1dd1 /toolchain/uClibc/patches/150-portability.patch
parentc3965d1fb081f68631f91f51a270dfbea561888b (diff)
downloadmaster-187ad058-2630adf92a5443c89a533fed32e912a9ca86e6f0.tar.gz
master-187ad058-2630adf92a5443c89a533fed32e912a9ca86e6f0.tar.bz2
master-187ad058-2630adf92a5443c89a533fed32e912a9ca86e6f0.zip
upgrade to uClibc 0.9.29 - break binary compatibility #1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10010 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/uClibc/patches/150-portability.patch')
-rw-r--r--toolchain/uClibc/patches/150-portability.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/toolchain/uClibc/patches/150-portability.patch b/toolchain/uClibc/patches/150-portability.patch
deleted file mode 100644
index c3a85107c8..0000000000
--- a/toolchain/uClibc/patches/150-portability.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Fix portability of build infrastructure
-* cp -d -> cp -P
-* tar --exclude is a GNU tar feature
-
---- uClibc-0.9.28/Makefile.orig Sun Jun 11 19:08:56 2006
-+++ uClibc-0.9.28/Makefile Sun Jun 11 19:12:05 2006
-@@ -158,12 +158,7 @@ install_dev:
- $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
- $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
- -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
-- if [ "$(KERNEL_SOURCE)" = "$(DEVEL_PREFIX)" ] ; then \
-- extra_exclude="--exclude include/linux --exclude include/asm'*'" ; \
-- else \
-- extra_exclude="" ; \
-- fi ; \
-- tar -chf - include --exclude .svn --exclude CVS $$extra_exclude \
-+ tar -chf - include \
- | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX)
- ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
- # Remove floating point related headers since float support is disabled.
-@@ -253,7 +248,7 @@ ifeq ($(strip $(HAVE_SHARED)),y)
- $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
- $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
- $(PREFIX)$(RUNTIME_PREFIX)lib
-- cp -dRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
-+ cp -pRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
- @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
- set -e; \
- $(SHELL_SET_X); \