diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-20 23:47:05 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-20 23:47:05 +0200 |
commit | 95264cc0ca88944501f73b4b19f731003997251a (patch) | |
tree | 05f38735da64432a913d3e895c1adcb79d31fc38 | |
parent | 42ec5e049af5c77f18e1facd52927b2f74ee3b9e (diff) | |
download | buildroot-95264cc0ca88944501f73b4b19f731003997251a.tar.gz buildroot-95264cc0ca88944501f73b4b19f731003997251a.zip |
util-linux: do not install bash completion files
In most embedded systems, there is not much point in installing bash
completion files, especially since bash may not necessarily be present
on the target.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/util-linux/util-linux.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk index cc57088f9b..4b8f731ff3 100644 --- a/package/util-linux/util-linux.mk +++ b/package/util-linux/util-linux.mk @@ -18,7 +18,10 @@ UTIL_LINUX_AUTORECONF = YES UTIL_LINUX_INSTALL_STAGING = YES UTIL_LINUX_DEPENDENCIES = host-pkgconf UTIL_LINUX_CONF_ENV = scanf_cv_type_modifier=no -UTIL_LINUX_CONF_OPT += --disable-rpath --disable-makeinstall-chown +UTIL_LINUX_CONF_OPT += \ + --disable-rpath \ + --disable-makeinstall-chown \ + --disable-bash-completion # We don't want the host-busybox dependency to be added automatically HOST_UTIL_LINUX_DEPENDENCIES = host-pkgconf |