summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-08-04 03:26:32 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-08-04 03:26:32 +0000
commit8b379ad6296f23d04b8a73b70d6a88cb78634244 (patch)
treef40a28a0bca66b87ae3b1d155a9533d9e83bc83f /package
parent26a4bd4099c0d2e39c6e86099645f31e64ffcdf9 (diff)
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')
-rw-r--r--package/arptables/Makefile2
-rw-r--r--package/busybox/Makefile4
-rw-r--r--package/dropbear/Makefile4
-rw-r--r--package/iproute2/Makefile2
-rw-r--r--package/iptables/Makefile8
-rw-r--r--package/libpcap/Makefile2
-rw-r--r--package/openssl/Makefile2
-rw-r--r--package/ppp/Makefile2
8 files changed, 13 insertions, 13 deletions
diff --git a/package/arptables/Makefile b/package/arptables/Makefile
index b4bfe18a7..855169b7f 100644
--- a/package/arptables/Makefile
+++ b/package/arptables/Makefile
@@ -33,7 +33,7 @@ define Build/Compile
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
- CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
+ CC="$(TARGET_CC)" LD="$(TARGET_CROSS)ld" \
COPT_FLAGS="$(TARGET_CFLAGS)" \
KERNEL_DIR="./include/linux"
endef
diff --git a/package/busybox/Makefile b/package/busybox/Makefile
index 31ec10351..afe7c59e3 100644
--- a/package/busybox/Makefile
+++ b/package/busybox/Makefile
@@ -38,11 +38,11 @@ endef
define Build/Configure
$(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
- yes '' | $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" -C $(PKG_BUILD_DIR) oldconfig
+ yes '' | $(MAKE) CC="$(TARGET_CC)" CROSS="$(TARGET_CROSS)" -C $(PKG_BUILD_DIR) oldconfig
endef
define Package/busybox/install
- $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" PREFIX="$(1)" \
+ $(MAKE) CC="$(TARGET_CC)" CROSS="$(TARGET_CROSS)" PREFIX="$(1)" \
EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) install
-rm -rf $(1)/lib64
endef
diff --git a/package/dropbear/Makefile b/package/dropbear/Makefile
index f5e9b154d..48e69e466 100644
--- a/package/dropbear/Makefile
+++ b/package/dropbear/Makefile
@@ -81,11 +81,11 @@ endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
- LD=$(TARGET_CC) \
+ LD="$(TARGET_CC)" \
PROGRAMS="dropbear dbclient dropbearkey scp" \
MULTI=1 SCPPROGRESS=1
$(MAKE) -C $(PKG_BUILD_DIR) \
- LD=$(TARGET_CC) \
+ LD="$(TARGET_CC)" \
PROGRAMS="dropbearconvert"
endef
diff --git a/package/iproute2/Makefile b/package/iproute2/Makefile
index d21a92c66..e494177c9 100644
--- a/package/iproute2/Makefile
+++ b/package/iproute2/Makefile
@@ -45,7 +45,7 @@ define Build/Configure
endef
define Build/Compile
- $(MAKE) -j1 -C $(PKG_BUILD_DIR)/netem HOSTCC=$(HOSTCC) CFLAGS="-D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -I ../include -DRESOLVE_HOSTNAMES"
+ $(MAKE) -j1 -C $(PKG_BUILD_DIR)/netem HOSTCC="$(HOSTCC)" CFLAGS="-D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -I ../include -DRESOLVE_HOSTNAMES"
$(MAKE) -j1 -C $(PKG_BUILD_DIR) $(TARGET_CONFIGURE_OPTS) KERNEL_INCLUDE=$(LINUX_DIR)/include all tc/tc ip/ip
endef
diff --git a/package/iptables/Makefile b/package/iptables/Makefile
index 99ef3347c..a28b8fd8e 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
diff --git a/package/libpcap/Makefile b/package/libpcap/Makefile
index 76c88af9c..1d9d4371f 100644
--- a/package/libpcap/Makefile
+++ b/package/libpcap/Makefile
@@ -61,7 +61,7 @@ define Build/Configure
--enable-static \
--disable-yydebug \
--enable-ipv6 \
- --with-build-cc=$(HOSTCC) \
+ --with-build-cc="$(HOSTCC)" \
--with-pcap=linux \
);
endef
diff --git a/package/openssl/Makefile b/package/openssl/Makefile
index 23207714b..bbbd2073e 100644
--- a/package/openssl/Makefile
+++ b/package/openssl/Makefile
@@ -78,7 +78,7 @@ define Build/Compile
# Work around openssl build bug to link libssl.so with libcrypto.so.
-rm $(PKG_BUILD_DIR)/libssl.so.*.*.*
$(MAKE) -C $(PKG_BUILD_DIR) -j1 \
- CC=$(TARGET_CC) \
+ CC="$(TARGET_CC)" \
CCOPTS="$(TARGET_CFLAGS) -fomit-frame-pointer" \
do_linux-shared
$(MAKE) -C $(PKG_BUILD_DIR) -j1 \
diff --git a/package/ppp/Makefile b/package/ppp/Makefile
index 6581ef7e2..a42af41d3 100644
--- a/package/ppp/Makefile
+++ b/package/ppp/Makefile
@@ -87,7 +87,7 @@ define Build/Compile
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)/usr
$(MAKE) -C $(PKG_BUILD_DIR) \
- CC=$(TARGET_CC) \
+ CC="$(TARGET_CC)" \
COPTS="$(TARGET_CFLAGS)" \
PRECOMPILED_FILTER=1 \
STAGING_DIR="$(STAGING_DIR)" \