summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/ncurses/ncurses.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/ncurses/ncurses.inc')
-rw-r--r--meta/recipes-core/ncurses/ncurses.inc11
1 files changed, 8 insertions, 3 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index 35b8b94d64..acd2579448 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -145,9 +145,14 @@ do_test() {
145# Split original _install_opts to two parts. 145# Split original _install_opts to two parts.
146# One is the options to install contents, the other is the parameters \ 146# One is the options to install contents, the other is the parameters \
147# when running command "make install" 147# when running command "make install"
148_install_opts = "\ 148# Note that install.libs will also implicitly install header files,
149 install.libs install.includes install.man \ 149# so we do not need to explicitly specify install.includes.
150" 150# Doing so could in fact result in a race condition, as both targets
151# (install.libs and install.includes) would install the same headers
152# at the same time
153
154_install_opts = " install.libs install.man "
155
151_install_cfgs = "\ 156_install_cfgs = "\
152 DESTDIR='${D}' \ 157 DESTDIR='${D}' \
153 PKG_CONFIG_LIBDIR='${libdir}/pkgconfig' \ 158 PKG_CONFIG_LIBDIR='${libdir}/pkgconfig' \