diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-04-04 10:59:06 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-04 18:03:03 +0200 |
commit | 1f89a6379cdc3348d972a09b7e900d1f51aee77a (patch) | |
tree | 75c4ba026e1832f9ed607199e764aa0b12d07cf9 | |
parent | e55789a1c296ebb071b1098d52c0c22a1e25d1a4 (diff) | |
download | buildroot-1f89a6379cdc3348d972a09b7e900d1f51aee77a.tar.gz buildroot-1f89a6379cdc3348d972a09b7e900d1f51aee77a.zip |
libkrb5: disable optional tcl support
Avoid detection of host tcl headers.
The tcl package in Buildroot is not cross-compile safe. The generated
tclConfig.sh script has -L/usr/lib in TCL_LIB_SPEC.
Should fix:
http://autobuild.buildroot.net/results/d11/d118c3c09f6fc1de26491f2ed480ef28b091dba8/
http://autobuild.buildroot.net/results/035/0353e1443125da1e544d1a98348716bfe67c8726/
Cc: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/libkrb5/libkrb5.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libkrb5/libkrb5.mk b/package/libkrb5/libkrb5.mk index 88cfc61a19..0390507304 100644 --- a/package/libkrb5/libkrb5.mk +++ b/package/libkrb5/libkrb5.mk @@ -25,7 +25,8 @@ LIBKRB5_CONF_OPTS = \ --without-system-db \ --without-system-et \ --without-system-ss \ - --without-system-verto + --without-system-verto \ + --without-tcl ifeq ($(BR2_PACKAGE_OPENLDAP),y) LIBKRB5_CONF_OPTS += --with-ldap |