diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-12-05 18:45:35 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-12-05 18:45:35 +0000 |
commit | 4fa7250c0736bb48a1cab5c634a40b351cefdbde (patch) | |
tree | f2a733597a4fa6f045410e91ad523839720c170a /package/fonera-mp3-drv/Makefile | |
parent | 412bedd41c605430eb079681d7d48031f65e94f1 (diff) | |
download | upstream-4fa7250c0736bb48a1cab5c634a40b351cefdbde.tar.gz upstream-4fa7250c0736bb48a1cab5c634a40b351cefdbde.tar.bz2 upstream-4fa7250c0736bb48a1cab5c634a40b351cefdbde.zip |
Removed redundant '-r' flags for cp. Fixes compilation on BSD/Darwin.
$(CP) is defined as CP:="cp -fpR"
Signed-off-by: Andy Boyett <agb-openwrt@padded-cell.net>
SVN-Revision: 9661
Diffstat (limited to 'package/fonera-mp3-drv/Makefile')
-rw-r--r-- | package/fonera-mp3-drv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/fonera-mp3-drv/Makefile b/package/fonera-mp3-drv/Makefile index 94c19f42c2..e0c4d45088 100644 --- a/package/fonera-mp3-drv/Makefile +++ b/package/fonera-mp3-drv/Makefile @@ -30,7 +30,7 @@ endef define Build/Prepare $(call Build/Prepare/Default) - $(CP) -r src/* $(PKG_BUILD_DIR)/ + $(CP) src/* $(PKG_BUILD_DIR)/ endef define Build/Compile |