From: nbd Date: Thu, 5 Apr 2007 22:08:36 +0000 (+0000) Subject: fix mksh compile with ccache X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=b30948dd36ff8fa400a1af8489203bba5808b72d;p=packages.git fix mksh compile with ccache git-svn-id: svn://svn.openwrt.org/openwrt/packages@6871 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/utils/mksh/Makefile b/utils/mksh/Makefile index 3468f21cc..5a0d64204 100644 --- a/utils/mksh/Makefile +++ b/utils/mksh/Makefile @@ -31,8 +31,8 @@ endef define Build/Compile cd $(PKG_BUILD_DIR); \ - CC=$(TARGET_CC) \ - TARGET_OS=$(shell uname -s) \ + CC="$(TARGET_CC)" \ + TARGET_OS="$(shell uname -s)" \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-DMKSH_SMALL=1" \ LDFLAGS="$(TARGET_LDFLAGS)" \