diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-12-17 15:11:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-12-17 15:11:34 +0000 |
commit | f403e2dcca7b2ee86ef84c3bf673e521495b1534 (patch) | |
tree | 42e9177ac11b2019530cabf54a93f0c110fa5bfb /tools | |
parent | 14281559e18298045bda9e3a4408a79c8039e9d9 (diff) | |
download | upstream-f403e2dcca7b2ee86ef84c3bf673e521495b1534.tar.gz upstream-f403e2dcca7b2ee86ef84c3bf673e521495b1534.tar.bz2 upstream-f403e2dcca7b2ee86ef84c3bf673e521495b1534.zip |
tools: add a symlink for gnu awk to fix kernel build errors on some platforms
SVN-Revision: 34736
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 9a0e148234..802d6c9aee 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) |