diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-04-01 11:43:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-04-01 11:43:11 +0000 |
commit | d94667294f62db7c54e9d12e198d5ad87ce11fe8 (patch) | |
tree | cc49ab759de08eed8b62580af0e57b3e1fe94b18 /toolchain/uClibc/patches | |
parent | 7d17ba2f44c1a881560f620d9b19a810681d8da8 (diff) | |
download | upstream-d94667294f62db7c54e9d12e198d5ad87ce11fe8.tar.gz upstream-d94667294f62db7c54e9d12e198d5ad87ce11fe8.tar.bz2 upstream-d94667294f62db7c54e9d12e198d5ad87ce11fe8.zip |
Fix portability patch for uClibc.
Certain versions of GNU cp treat -P as --parent, which is wrong here and -P should be implied by -R already.
Fixes build on OSX with fink's fileutils installed.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6784 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/uClibc/patches')
-rw-r--r-- | toolchain/uClibc/patches/150-portability.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/uClibc/patches/150-portability.patch b/toolchain/uClibc/patches/150-portability.patch index 71afd50b57..c3a85107c8 100644 --- a/toolchain/uClibc/patches/150-portability.patch +++ b/toolchain/uClibc/patches/150-portability.patch @@ -23,7 +23,7 @@ Fix portability of build infrastructure $(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 ++ 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); \ |