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

Fixes Savannah bug #37558.
This commit is contained in:
Christoph Junghans 2012-10-12 15:37:49 +01:00 committed by Colin Watson
commit a31b11bd96
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-10-12 Christoph Junghans <ottxor@gentoo.org>
* grub-core/Makefile.am (moddep.lst): Use $(AWK) rather than awk.
Fixes Savannah bug #37558.
2012-10-12 Colin Watson <cjwatson@ubuntu.com>
* grub-core/commands/configfile.c (GRUB_MOD_INIT): Correct

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