From: Thomas Graf Date: Wed, 22 Feb 2012 23:20:45 +0000 (+0100) Subject: doc: Fix typos in autoconf example X-Git-Tag: libnl3_2_8~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7d06614fc233db2ef2a6bce2bcde18dc019be3b;p=thirdparty%2Flibnl.git doc: Fix typos in autoconf example Reported by nick black --- diff --git a/doc/core.txt b/doc/core.txt index c10cbc0..1bc5a74 100644 --- a/doc/core.txt +++ b/doc/core.txt @@ -70,8 +70,8 @@ required to link against the library. ---- PKG_CHECK_MODULES(LIBNL3, libnl-3.0 >= 3.1, [have_libnl3=yes], [have_libnl3=no]) if (test "${have_libnl3}" = "yes"); then - CFLAGS += "$LIBNL3_CFLAGS" - LIBS += "$LIBNL3_LIBS" + CFLAGS="$LIBNL3_CFLAGS" + LIBS="$LIBNL3_LIBS" fi ----