From ced1f047c2ad15389801536dbd7886116a91e543 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Thu, 15 Mar 2012 11:53:51 +0100 Subject: [PATCH] fix pkg-config typo. --- docs/lasso-book/writing-a-c-sp.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lasso-book/writing-a-c-sp.txt b/docs/lasso-book/writing-a-c-sp.txt index b3e855d2..8de66b8b 100644 --- a/docs/lasso-book/writing-a-c-sp.txt +++ b/docs/lasso-book/writing-a-c-sp.txt @@ -56,7 +56,7 @@ support. It is possible to workaround the bug:: $ gcc hello.c -o hello $(pkg-config lasso --cflags --libs) :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.