From f7d06614fc233db2ef2a6bce2bcde18dc019be3b Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Thu, 23 Feb 2012 00:20:45 +0100 Subject: [PATCH] doc: Fix typos in autoconf example Reported by nick black --- doc/core.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ----