summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-06-26 14:47:31 +0300
committerLasse Collin <lasse.collin@tukaani.org>2009-06-26 14:47:31 +0300
commit1c9360b7d1197457aaad2f8888b99f1149861579 (patch)
tree9b5cec00c4dd3c08d2b9c12134d3c3293af4eb9b /debug
parentd45615c555e250209ebb55aa3649abe790f1eeac (diff)
downloadxz-1c9360b7d1197457aaad2f8888b99f1149861579.tar.gz
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.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/debug/Makefile.am b/debug/Makefile.am
index 7d45671..a5b7e31 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)