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/check | |
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/check')
-rw-r--r-- | src/liblzma/check/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/check/Makefile.am b/src/liblzma/check/Makefile.am index 6c43a701..abd598aa 100644 --- a/src/liblzma/check/Makefile.am +++ b/src/liblzma/check/Makefile.am @@ -13,8 +13,8 @@ libcheck_la_SOURCES = \ check.h \ crc_macros.h libcheck_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_CHECK_CRC32 if COND_SMALL |