summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-27 18:01:06 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-27 18:01:39 +0200
commit6dd765d1abd92fe0ec6f3349b5bbd48294078815 (patch)
tree297e7bb3a78c3d278f3018a7dcbb921f67258cab /configure.ac
parent625368eb5bcb9954ad190af50962e6b7c2fd9c4c (diff)
Fix typo in LZO_LIBS variable
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
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])]
)]
)