From: Peter Korsgaard Date: Mon, 29 Oct 2012 21:06:19 +0000 (+0100) Subject: docs/manual: update to host-pkgconf X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=598aea4b6171dd0a61160bba6b7c021e64c2f22b;p=buildroot.git docs/manual: update to host-pkgconf Update the manual to match now that we have moved to pkgconf instead of pkg-config. Signed-off-by: Peter Korsgaard --- diff --git a/docs/manual/adding-packages-autotools.txt b/docs/manual/adding-packages-autotools.txt index 9fb0918220..b85b7af9f1 100644 --- a/docs/manual/adding-packages-autotools.txt +++ b/docs/manual/adding-packages-autotools.txt @@ -21,7 +21,7 @@ package, with an example : 09: LIBFOO_INSTALL_STAGING = YES 10: LIBFOO_INSTALL_TARGET = YES 11: LIBFOO_CONF_OPT = --enable-shared -12: LIBFOO_DEPENDENCIES = libglib2 host-pkg-config +12: LIBFOO_DEPENDENCIES = libglib2 host-pkgconf 13: 14: $(eval $(autotools-package)) ------------------------ diff --git a/docs/manual/adding-packages-cmake.txt b/docs/manual/adding-packages-cmake.txt index e29ca0fa1b..da4984a525 100644 --- a/docs/manual/adding-packages-cmake.txt +++ b/docs/manual/adding-packages-cmake.txt @@ -21,7 +21,7 @@ with an example : 09: LIBFOO_INSTALL_STAGING = YES 10: LIBFOO_INSTALL_TARGET = YES 11: LIBFOO_CONF_OPT = -DBUILD_DEMOS=ON -12: LIBFOO_DEPENDENCIES = libglib2 host-pkg-config +12: LIBFOO_DEPENDENCIES = libglib2 host-pkgconf 13: 14: $(eval $(cmake-package)) ------------------------