From: Richard W.M. Jones Date: Fri, 6 Oct 2017 09:31:58 +0000 (+0100) Subject: configure: When overriding LIBS, include old $LIBS value. X-Git-Tag: v0.6~17 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;ds=sidebyside;h=5e1d3b2ac6f7d1750f912ed724e54ef00204d6f6;p=ocaml-augeas.git configure: When overriding LIBS, include old $LIBS value. Fixes commit a4165c822baf74f5c1906593a984f996b11058d1. --- diff --git a/configure.ac b/configure.ac index 6b27aff..aecf96e 100644 --- a/configure.ac +++ b/configure.ac @@ -47,7 +47,7 @@ PKG_CHECK_MODULES([AUGEAS], [augeas]) dnl Check for aug_source function, added in Augeas 1.8.0. old_LIBS="$LIBS" -LIBS="$AUGEAS_LIBS" +LIBS="$AUGEAS_LIBS $LIBS" AC_CHECK_FUNCS([aug_source]) LIBS="$old_LIBS"