diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-06-26 14:47:31 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-06-26 14:47:31 +0300 |
commit | 1c9360b7d1197457aaad2f8888b99f1149861579 (patch) | |
tree | 9b5cec00c4dd3c08d2b9c12134d3c3293af4eb9b /debug | |
parent | Allow to explicitly specify autotool versions in autogen.sh. (diff) | |
download | xz-1c9360b7d1197457aaad2f8888b99f1149861579.tar.xz |
Fix @variables@ to $(variables) in Makefile.am files.
Fix the ordering of libgnu.a and LTLIBINTL on the linker
command line and added missing LTLIBINTL to tests/Makefile.am.
Diffstat (limited to 'debug')
-rw-r--r-- | debug/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/debug/Makefile.am b/debug/Makefile.am index 7d45671f..a5b7e310 100644 --- a/debug/Makefile.am +++ b/debug/Makefile.am @@ -15,15 +15,15 @@ noinst_PROGRAMS = \ hex2bin AM_CPPFLAGS = \ - -I@top_srcdir@/src/common \ - -I@top_srcdir@/src/liblzma/api + -I$(top_srcdir)/src/common \ + -I$(top_srcdir)/src/liblzma/api AM_LDFLAGS = -static -LDADD = \ - @top_builddir@/src/liblzma/liblzma.la \ - @LTLIBINTL@ +LDADD = $(top_builddir)/src/liblzma/liblzma.la if COND_GNULIB -LDADD += @top_builddir@/lib/libgnu.a +LDADD += $(top_builddir)/lib/libgnu.a endif + +LDADD += $(LTLIBINTL) |