better excludes for the local tree copy

This commit is contained in:
Felix Fietkau 2008-06-29 00:06:42 +00:00
parent 533d8dee9d
commit c99752055a

View file

@ -36,7 +36,11 @@ include $(INCLUDE_DIR)/package.mk
ifeq ($(USELOCAL),1) ifeq ($(USELOCAL),1)
define Build/Prepare define Build/Prepare
mkdir -p $(PKG_BUILD_DIR) mkdir -p $(PKG_BUILD_DIR)
$(TAR) c -C ../../../ . --exclude=.pc --exclude='boa-0*' --exclude=.svn --exclude=.git --exclude='*.o' | tar x -C $(PKG_BUILD_DIR)/ $(TAR) c -C ../../../ . \
--exclude=.pc --exclude=.svn --exclude=.git \
--exclude='boa-0*' --exclude='*.o' --exclude='*.so' \
--exclude=dist | \
tar x -C $(PKG_BUILD_DIR)/
endef endef
endif endif