fix pkg-config typo.

This commit is contained in:
Simon Josefsson 2012-03-15 11:53:51 +01:00 committed by Frédéric Péters
parent f53c1aaaac
commit ced1f047c2
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ support. It is possible to workaround the bug::
$ gcc hello.c -o hello $(pkg-config lasso --cflags --libs)
<command line>:4:16: missing terminating " character
$ gcc hello.c -o hello $(pkg-config xmlsec1 --cflags --libs | tr -d '\\')
$ gcc hello.c -o hello $(pkg-config lasso --cflags --libs | tr -d '\\')
$ ./hello
Hello world.