From: Ben Elliston Date: Wed, 25 Aug 1999 14:31:53 +0000 (+0000) Subject: 1999-08-26 Ben Elliston X-Git-Tag: trunk-pre-merge-trunk-into-experimental-1999-10-01~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7be3d59f1bc61d987d01a90173b1ed9555010a8f;p=thirdparty%2Fautoconf.git 1999-08-26 Ben Elliston * autoconf.texi (Changed Results): Correct an error in one of the examples. Fix for autoconf/38. --- diff --git a/ChangeLog b/ChangeLog index 76d6d419..f1f0207d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-08-26 Ben Elliston + + * autoconf.texi (Changed Results): Correct an error in one of the + examples. Fix for autoconf/38. + 1999-08-25 Ben Elliston * autoconf.texi (Cache Variable Names): Be more explicit about the diff --git a/autoconf.texi b/autoconf.texi index be7709da..21d4c4e3 100644 --- a/autoconf.texi +++ b/autoconf.texi @@ -5216,7 +5216,7 @@ if test $ac_cv_func_syslog = no; then # syslog is not in the default libraries. See if it's in some other. for lib in bsd socket inet; do AC_CHECK_LIB($lib, syslog, [AC_DEFINE(HAVE_SYSLOG) - LIBS="$LIBS $lib"; break]) + LIBS="$LIBS -l$lib"; break]) done fi @end example diff --git a/doc/autoconf.texi b/doc/autoconf.texi index be7709da..21d4c4e3 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -5216,7 +5216,7 @@ if test $ac_cv_func_syslog = no; then # syslog is not in the default libraries. See if it's in some other. for lib in bsd socket inet; do AC_CHECK_LIB($lib, syslog, [AC_DEFINE(HAVE_SYSLOG) - LIBS="$LIBS $lib"; break]) + LIBS="$LIBS -l$lib"; break]) done fi @end example