diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-10-14 14:26:40 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-10-14 14:26:40 +0000 |
commit | 9547d840f96375261408d5c1312b3340c4bb6f3a (patch) | |
tree | 734609396db9c0a378d40649f29fd8244c2c2d92 /package/alsa/patches/110-cp_command.patch | |
parent | fb9fc446526b4873389d816090734da066829dbb (diff) |
portability fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5082 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/alsa/patches/110-cp_command.patch')
-rw-r--r-- | package/alsa/patches/110-cp_command.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/alsa/patches/110-cp_command.patch b/package/alsa/patches/110-cp_command.patch new file mode 100644 index 000000000..68499e883 --- /dev/null +++ b/package/alsa/patches/110-cp_command.patch @@ -0,0 +1,20 @@ +diff -ur alsa.old/Makefile alsa.dev/Makefile +--- alsa.old/Makefile 2006-10-14 07:07:48.000000000 -0700 ++++ alsa.dev/Makefile 2006-10-14 07:08:45.000000000 -0700 +@@ -100,6 +100,7 @@ + SUBDIRS += parisc + endif + CSUBDIRS += include test utils ++CP = cp -fPR + + KCONFIG_FILES = $(shell find $(SND_TOPDIR) -name Kconfig) $(shell find $(SND_TOPDIR)/alsa-kernel/ -name Kconfig) + +@@ -115,7 +116,7 @@ + if [ ! -d include/sound -a ! -L include/sound ]; then \ + ln -sf ../alsa-kernel/include include/sound ; \ + fi +- cp -auvf include/version.h include/sound/version.h ++ $(CP) include/version.h include/sound/version.h + + utils/mod-deps: utils/mod-deps.c + gcc utils/mod-deps.c -o utils/mod-deps |