aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-06-09 07:54:46 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-06-09 07:54:46 +0000
commit67a444c46246f44cc1bf4229c563e2d03004e07f (patch)
tree213c63eb2a29e89b95030f77dee340cbace92940
parent4063d0c93f6f788210eb86cfe7dcaae03cc79673 (diff)
downloadupstream-67a444c46246f44cc1bf4229c563e2d03004e07f.tar.gz
upstream-67a444c46246f44cc1bf4229c563e2d03004e07f.tar.bz2
upstream-67a444c46246f44cc1bf4229c563e2d03004e07f.zip
fix typo in iptables makefile resulting in patches not being applied (#5311)
SVN-Revision: 16392
-rw-r--r--package/iptables/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/iptables/Makefile b/package/iptables/Makefile
index 1879454c6d..1c98b0314c 100644
--- a/package/iptables/Makefile
+++ b/package/iptables/Makefile
@@ -20,9 +20,9 @@ PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \
ftp://ftp.no.netfilter.org/pub/netfilter/iptables/
ifeq ($(CONFIG_EXTERNAL_KERNEL_TREE),)
-PATCH_DIR:=./patches/$(PKG_VERSION)
-else
PATCH_DIR:=
+else
+PATCH_DIR:=./patches/$(PKG_VERSION)
endif
PKG_FIXUP = libtool
/a> 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250