commit e7a0bf155104274c2413851a299373f3ea2e172e
parent a8f618639d8d1ee713e83846bf4a771d506cba1a
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 15 May 2013 20:48:02 +0000
-fix link order
Diffstat:
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/gnunet-c-tutorial.pdf b/doc/gnunet-c-tutorial.pdf
Binary files differ.
diff --git a/doc/gnunet-c-tutorial.tex b/doc/gnunet-c-tutorial.tex
@@ -420,7 +420,7 @@ The source code for the above listing can be found at
\begin{lstlisting}
$ export CPPFLAGS="-I/path/to/gnunet/headers"
$ export LDFLAGS="-L/path/to/gnunet/libraries"
-$ gcc -o testbed-test -lgnunettestbed -lgnunetdht -lgnunetutil testbed_test.c
+$ gcc -o testbed-test testbed_test.c -lgnunettestbed -lgnunetdht -lgnunetutil
\end{lstlisting}
The \texttt{CPPFLAGS} and \texttt{LDFLAGS} are necessary if GNUnet is installed
into a different directory other than \texttt{/usr/local}.