diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-04-29 01:30:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-04-29 01:30:48 +0000 |
commit | 874f03ea007ec022c344bd2814aded1545650b5c (patch) | |
tree | 48c21175fe5bce7afddda4172e5ae0d2e3b25859 /include/package-ipkg.mk | |
parent | 0212ef08bd1af96a0e34782d3a7affa7d03fbe4d (diff) | |
download | upstream-874f03ea007ec022c344bd2814aded1545650b5c.tar.gz upstream-874f03ea007ec022c344bd2814aded1545650b5c.tar.bz2 upstream-874f03ea007ec022c344bd2814aded1545650b5c.zip |
fixes for a few build errors on osx without fink
SVN-Revision: 7065
Diffstat (limited to 'include/package-ipkg.mk')
-rw-r--r-- | include/package-ipkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index ac6912844b..20d1326133 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -63,9 +63,9 @@ ifeq ($(DUMP),) $$(IPKG_$(1)): $(PKG_BUILD_DIR)/.built $$(IDIR_$(1))/CONTROL/control $(call Package/$(1)/install,$$(IDIR_$(1))) mkdir -p $(PACKAGE_DIR) - -find $$(IDIR_$(1)) -name CVS | xargs -r rm -rf - -find $$(IDIR_$(1)) -name .svn | xargs -r rm -rf - -find $$(IDIR_$(1)) -name '.#*' | xargs -r rm -f + -find $$(IDIR_$(1)) -name CVS | $(XARGS) rm -rf + -find $$(IDIR_$(1)) -name .svn | $(XARGS) rm -rf + -find $$(IDIR_$(1)) -name '.#*' | $(XARGS) rm -f $(RSTRIP) $$(IDIR_$(1)) $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR) @[ -f $$(IPKG_$(1)) ] || false |