diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-16 16:25:53 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-16 16:25:53 +0000 |
commit | d374fd767f0f7cb3e5313ba20f7484537688caee (patch) | |
tree | df1ff749ef47b5ebdfb235430ad948f52193b1f1 /package | |
parent | fc0f5aa51714bd096d12afc15d30cf3c37e40124 (diff) | |
download | master-187ad058-d374fd767f0f7cb3e5313ba20f7484537688caee.tar.gz master-187ad058-d374fd767f0f7cb3e5313ba20f7484537688caee.tar.bz2 master-187ad058-d374fd767f0f7cb3e5313ba20f7484537688caee.zip |
move exec permissions fix at Build/Prepare stage
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8802 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/iptables/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/iptables/Makefile b/package/iptables/Makefile index bd0ecda96d..94c81ba383 100644 --- a/package/iptables/Makefile +++ b/package/iptables/Makefile @@ -195,6 +195,11 @@ define Package/ip6tables-utils TITLE:=ip6tables save and restore utilities endef +define Build/Prepare + $(call Build/Prepare/Default) + chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test* +endef + define Build/Configure rm -f $(PKG_BUILD_DIR)/.configured* $(MAKE) -C $(PKG_BUILD_DIR) \ @@ -202,7 +207,6 @@ define Build/Configure endef define Build/Compile - chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test* mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ |