doc: Fix typos in autoconf example

Reported by nick black <dankamongmen@gmail.com>
This commit is contained in:
Thomas Graf 2012-02-23 00:20:45 +01:00
parent 0b40364150
commit f7d06614fc

View file

@ -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
----