massive cleanup of toolchain/

SVN-Revision: 4038
This commit is contained in:
Felix Fietkau
2006-06-21 06:19:43 +00:00
parent 1f20179ce5
commit e248cf0f00
119 changed files with 484 additions and 1595 deletions

View File

@@ -201,14 +201,15 @@ define BuildPackage
endef
ifneq ($(strip $(PKG_CAT)),)
ifeq ($(PKG_CAT),unzip)
UNPACK=unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE)
else
UNPACK=$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(PKG_BUILD_DIR)/.. $(TAR_OPTIONS) -
endif
define Build/Prepare/Default
@if [ "$(PKG_CAT)" = "unzip" ]; then \
unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE) ; \
else \
$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(PKG_BUILD_DIR)/.. $(TAR_OPTIONS) - ; \
fi
$(UNPACK)
@if [ -d ./patches ]; then \
$(PATCH) $(PKG_BUILD_DIR) ./patches ; \
$(PATCH) $(PKG_BUILD_DIR) ./patches; \
fi
endef
endif