various ccache fixes (closes: #1599), thanks to Bartman007

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6977 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2007-04-16 23:08:14 +00:00
parent 2d74523cfd
commit 8e881eae8f
4 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
CC=$(TARGET_CC) \
CC="$(TARGET_CC)" \
all
endef

View File

@ -42,7 +42,7 @@ endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
CC=$(TARGET_CC) \
CC="$(TARGET_CC)" \
all
endef

View File

@ -69,7 +69,7 @@ define Build/Compile
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
CC=$(TARGET_CC) \
CC="$(TARGET_CC)" \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef

View File

@ -35,7 +35,7 @@ endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
CC=$(TARGET_CC) \
CC="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)"
endef