* grub-core/Makefile.am (moddep.lst): Use $(AWK) rather than awk.
Fixes Savannah bug #37558.
This commit is contained in:
commit
a31b11bd96
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue