1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

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
This commit is contained in:
mbm
2006-08-04 03:26:32 +00:00
parent 26a4bd4099
commit 8b379ad629
9 changed files with 15 additions and 15 deletions

View File

@@ -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