summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/core.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/core.txt b/doc/core.txt
index c10cbc07..1bc5a74a 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
----