diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 18:01:06 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 18:01:39 +0200 |
commit | 6dd765d1abd92fe0ec6f3349b5bbd48294078815 (patch) | |
tree | 297e7bb3a78c3d278f3018a7dcbb921f67258cab | |
parent | 625368eb5bcb9954ad190af50962e6b7c2fd9c4c (diff) |
Fix typo in LZO_LIBS variable
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3aa337b..d62f5a0 100644 --- a/configure.ac +++ b/configure.ac @@ -117,7 +117,7 @@ if test "x$want_lzo" != "xno"; then AC_CHECK_LIB([lzo2], [lzo1x_1_15_compress], [LZO_LIBS="-llzo2"], [AC_CHECK_LIB([lzo],[lzo1x_1_15_compress], - [ZO_LIBS="-llzo"], + [LZO_LIBS="-llzo"], [AM_CONDITIONAL([WITH_LZO], [false])] )] ) |