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 | 3a713ff20236e1ae26953dfabad4d25b9b7f4a3b (patch) | |
tree | 1a4f369df111ea10a24602b439c634a3af43a345 /package/iptables/Makefile | |
parent | 9ad89ea9cb6554cda5898e95728292a0824eeec5 (diff) | |
download | upstream-3a713ff20236e1ae26953dfabad4d25b9b7f4a3b.tar.gz upstream-3a713ff20236e1ae26953dfabad4d25b9b7f4a3b.tar.bz2 upstream-3a713ff20236e1ae26953dfabad4d25b9b7f4a3b.zip |
move exec permissions fix at Build/Prepare stage
SVN-Revision: 8802
Diffstat (limited to 'package/iptables/Makefile')
-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) \ |