* grub-core/Makefile.am (moddep.lst): Use $(AWK) instead of awk

This commit is contained in:
Christoph Junghans 2012-10-12 15:04:02 +02:00
parent 39525c22be
commit 9e0bee42cd
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ syminfo.lst: gensyminfo.sh kernel_syms.lst $(MODULE_FILES)
# generate global module dependencies list
moddep.lst: syminfo.lst genmoddep.awk video.lst
cat $< | sort | awk -f $(srcdir)/genmoddep.awk > $@ || (rm -f $@; exit 1)
cat $< | sort | $(AWK) -f $(srcdir)/genmoddep.awk > $@ || (rm -f $@; exit 1)
platform_DATA += moddep.lst
CLEANFILES += config.log syminfo.lst moddep.lst