diff options
| author | Florian Fainelli <florian@openwrt.org> | 2012-02-06 17:15:36 +0000 |
|---|---|---|
| committer | Florian Fainelli <florian@openwrt.org> | 2012-02-06 17:15:36 +0000 |
| commit | 620843b2eef4c20d4fd63ba5fd3d30392702c5c0 (patch) | |
| tree | 0743467e8211c21787b11014ac1b8494e39b546e | |
| parent | f1051a296d362c16a89ab672a54abb24ea26370b (diff) | |
| download | upstream-620843b2eef4c20d4fd63ba5fd3d30392702c5c0.tar.gz upstream-620843b2eef4c20d4fd63ba5fd3d30392702c5c0.tar.bz2 upstream-620843b2eef4c20d4fd63ba5fd3d30392702c5c0.zip | |
iptables: don't apply patches if building an external kernel
SVN-Revision: 30339
| -rw-r--r-- | package/iptables/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/iptables/Makefile b/package/iptables/Makefile index b60990cabfc..5f56630237c 100644 --- a/package/iptables/Makefile +++ b/package/iptables/Makefile @@ -23,6 +23,10 @@ PKG_FIXUP:=autoreconf PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 +ifneq ($(CONFIG_EXTERNAL_KERNEL_TREE),"") +PATCH_DIR:= +endif + include $(INCLUDE_DIR)/package.mk ifeq ($(DUMP),) -include $(LINUX_DIR)/.config |
