diff options
author | Olivier Schonken <olivier.schonken@gmail.com> | 2013-11-01 13:59:01 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-11-01 15:26:07 +0100 |
commit | 9c7bc3f3c0a02b55b88aa4277c29e86d40698370 (patch) | |
tree | 26173fd7bdb1fda670bc06475a5054f2cfd142b1 | |
parent | e06fac395b2adc5b3062e92fd29b1902dacc200c (diff) | |
download | buildroot-9c7bc3f3c0a02b55b88aa4277c29e86d40698370.tar.gz buildroot-9c7bc3f3c0a02b55b88aa4277c29e86d40698370.zip |
util-linux: Add --without-ncurses to host-util-linux
Ncurses not necessary when building host-util-linux, so passing
--without-ncurses avoids from misdetecting an installed host ncurses
on the build machine.
[Thomas: improve commit message]
Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/util-linux/util-linux.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk index 4db1e524e5..a694f3d487 100644 --- a/package/util-linux/util-linux.mk +++ b/package/util-linux/util-linux.mk @@ -84,7 +84,7 @@ HOST_UTIL_LINUX_CONF_OPT += \ --disable-login --disable-mount --disable-partx \ --disable-pivot_root --disable-rename --disable-schedutils \ --disable-su --disable-switch_root --disable-unshare \ - --disable-uuidd --disable-wall + --disable-uuidd --disable-wall --without-ncurses # Avoid building the tools if they are disabled since we can't install on # a per-directory basis. |