diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2014-11-28 11:44:03 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-12-01 11:53:23 +0800 |
commit | 46fbb1e1e33b130284ec211f9c647268ff709ba7 (patch) | |
tree | 0f500fb4560669b6d38f1e49a4ceb1aff7e2c101 /test/parser/Makefile.am | |
parent | d28e414354d791a8c010cf6069bfc549d4343811 (diff) | |
download | talos-petitboot-46fbb1e1e33b130284ec211f9c647268ff709ba7.tar.gz talos-petitboot-46fbb1e1e33b130284ec211f9c647268ff709ba7.zip |
test/parser: Add dependency on libpbcore.la
Currently, build only a test object will fail:
[jk@pablo obj]$ make ./test/parser/test-grub2-single
CCLD test/parser/test-grub2-single
libtool: link: cannot find the library `lib/libpbcore.la' or unhandled argument `lib/libpbcore.la'
We're adding this to the link argument, but not as a dependency. This
change adds the dependency.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test/parser/Makefile.am')
-rw-r--r-- | test/parser/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parser/Makefile.am b/test/parser/Makefile.am index d24e720..eca4c0a 100644 --- a/test/parser/Makefile.am +++ b/test/parser/Makefile.am @@ -77,7 +77,7 @@ $(parser_TESTS): AM_CPPFLAGS += \ -I$(top_srcdir)/discover \ -DLOCAL_STATE_DIR='"$(localstatedir)"' $(parser_TESTS): LDADD += $@.embedded-config.o test/parser/libtest.ro $(core_lib) -$(parser_TESTS): %: %.embedded-config.o test/parser/libtest.ro +$(parser_TESTS): %: %.embedded-config.o test/parser/libtest.ro $(core_lib) extract_config = $(srcdir)/test/parser/extract-config.awk |