diff options
author | Mike Baker <mbm@openwrt.org> | 2006-08-04 03:26:32 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-08-04 03:26:32 +0000 |
commit | 0611443ef95fba15d8f35234d7c37699aa99d296 (patch) | |
tree | f40a28a0bca66b87ae3b1d155a9533d9e83bc83f /package/iptables/Makefile | |
parent | b3fdbb00709de06993a05d74170eb035ac95887e (diff) | |
download | upstream-0611443ef95fba15d8f35234d7c37699aa99d296.tar.gz upstream-0611443ef95fba15d8f35234d7c37699aa99d296.tar.bz2 upstream-0611443ef95fba15d8f35234d7c37699aa99d296.zip |
add quotes to TARGET_CC and TARGET_CROSS to help with distcc and ccache
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4429 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iptables/Makefile')
-rw-r--r-- | package/iptables/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/iptables/Makefile b/package/iptables/Makefile index 99ef3347c0..a28b8fd8ed 100644 --- a/package/iptables/Makefile +++ b/package/iptables/Makefile @@ -163,8 +163,8 @@ define Build/Compile mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ - CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \ - KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \ + CC="$(TARGET_CC)" COPT_FLAGS="$(TARGET_CFLAGS)" \ + KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \ DESTDIR="$(PKG_INSTALL_DIR)" \ all install install-devel endef @@ -173,8 +173,8 @@ endef define Build/InstallDev $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ - CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \ - KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \ + CC="$(TARGET_CC)" COPT_FLAGS="$(TARGET_CFLAGS)" \ + KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \ DESTDIR="$(STAGING_DIR)" \ install install-devel endef |