summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorThomas Graf <tgraf@redhat.com>2012-02-23 00:20:45 +0100
committerThomas Graf <tgraf@redhat.com>2012-02-23 00:20:45 +0100
commitf7d06614fc233db2ef2a6bce2bcde18dc019be3b (patch)
tree81d76eaff642e84d281e48a364b22685c9ae3606 /doc
parent0b40364150452cb8a8467d10143637bfbb99fb89 (diff)
downloadlibnl-f7d06614fc233db2ef2a6bce2bcde18dc019be3b.tar.gz
doc: Fix typos in autoconf example
Reported by nick black <dankamongmen@gmail.com>
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 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
----