Projet

Général

Profil

0001-docs-lasso-book-fix-pkg-config-typo.patch

Simon Josefsson, 15 mars 2012 11:59

Télécharger (889 octets)

Voir les différences:

Subject: [PATCH] [docs lasso-book] fix pkg-config typo.

 docs/lasso-book/writing-a-c-sp.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
docs/lasso-book/writing-a-c-sp.txt
56 56

  
57 57
  $ gcc hello.c -o hello $(pkg-config lasso --cflags --libs)
58 58
 <command line>:4:16: missing terminating " character
59
  $ gcc hello.c -o hello $(pkg-config xmlsec1 --cflags --libs | tr -d '\\')
59
  $ gcc hello.c -o hello $(pkg-config lasso --cflags --libs | tr -d '\\')
60 60
  $ ./hello
61 61
 Hello world.
62 62

  
63
-