X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=test%2Fparser%2FMakefile.am;h=84ff2e1906263f4a4294eb4ec9dc778b79b82878;hp=e330e8268f1f30823797d8ff0097f9e04c3db1fa;hb=f7d58f3945a5b1325e451d3d98018ebeb7d14741;hpb=5024701da503c883bd23eb2b443b03297a0e8594 diff --git a/test/parser/Makefile.am b/test/parser/Makefile.am index e330e82..84ff2e1 100644 --- a/test/parser/Makefile.am +++ b/test/parser/Makefile.am @@ -28,6 +28,7 @@ TESTS = test-null \ test-grub2-single \ test-grub2-multiple-resolve \ test-grub2-f18-ppc64 \ + test-grub2-ubuntu-13_04-x86 \ test-kboot-single \ test-yaboot-single \ test-yaboot-external \ @@ -36,6 +37,7 @@ TESTS = test-null \ check_PROGRAMS = $(TESTS) check_LIBRARIES = $(test_libs) check_DATA = data/grub2-f18-ppc64.conf \ + data/grub2-ubuntu-13_04-x86.conf \ data/yaboot-rh8-ppc64.conf common_libs = $(top_builddir)/lib/libpbcore.la @@ -64,7 +66,7 @@ $(check_PROGRAMS): LDADD += $@.embedded-config.o extract_config = $(srcdir)/extract-config.awk %.embedded-config.c: %.c $(extract_config) - gawk --file=$(extract_config) $^ > $@ + $(AWK) -f $(extract_config) $< > $@ EXTRA_DIST = $(check_DATA) $(extract_config)