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 /src/liblzma/subblock | |
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 'src/liblzma/subblock')
-rw-r--r-- | src/liblzma/subblock/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/subblock/Makefile.am b/src/liblzma/subblock/Makefile.am index 020551c2..4375a9ee 100644 --- a/src/liblzma/subblock/Makefile.am +++ b/src/liblzma/subblock/Makefile.am @@ -8,8 +8,8 @@ noinst_LTLIBRARIES = libsubblock.la libsubblock_la_SOURCES = libsubblock_la_CPPFLAGS = \ - -I@top_srcdir@/src/liblzma/api \ - -I@top_srcdir@/src/liblzma/common + -I$(top_srcdir)/src/liblzma/api \ + -I$(top_srcdir)/src/liblzma/common if COND_ENCODER_SUBBLOCK libsubblock_la_SOURCES += \ |