diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-17 15:11:34 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-17 15:11:34 +0000 |
commit | fa196884929263218a879aa2c1ddd1f690d5e300 (patch) | |
tree | 186bbc210137e81583b4bc953617c567c4103c18 /tools/Makefile | |
parent | 6147aabbce21b8a14fb05ea61a7be210f66688ba (diff) |
tools: add a symlink for gnu awk to fix kernel build errors on some platforms
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34736 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 9a0e14823..802d6c9ae 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -128,8 +128,9 @@ $(eval $(call PrepareCommand,md5sum,gmd5sum md5sum $(SCRIPT_DIR)/md5sum)) $(eval $(call PrepareCommand,cp,gcp cp)) $(eval $(call PrepareCommand,seq,gseq seq)) $(eval $(call PrepareCommand,python,python2 python)) +$(eval $(call PrepareCommand,awk,gawk awk)) -$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat seq python) +$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat seq python awk) $(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps) $(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps) |