GNOME Bugzilla – Bug 751400
documentation for using libsecret in C has bad linebreak
Last modified: 2015-06-29 12:42:28 UTC
https://developer.gnome.org/libsecret/0.18/using-c.html suggests: PKG_CHECK_MODULES(LIBSECRET, [libsecret-1 >= 1.0]) AC_SUBST(LIBSECRET_CFLAGS) AC_SUBST(LIBSECRET_LIBS) This should be three lines, and not four. the linebreak after libsecret-1 is produced by expansion of &major; in docs/reference/libsecret/libsecret-using.sgml, which apparently introduces a newline into the value. I'm not enough of a sgml wizard to know where the fix needs to happen to patch it myself, sorry.
Created attachment 306285 [details] [review] docs: Don't overcomplicate things with the major version in docs Just hard code '1' instead of using variable substitution.
This patch should fix things. Attachment 306285 [details] pushed as 4c08fe2 - docs: Don't overcomplicate things with the major version in docs