diff options
author | Baruch Siach <baruch@tkos.co.il> | 2014-05-14 15:45:08 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-15 23:39:15 +0200 |
commit | a13ea3b30b02580c0f582f2c2435818aa1921a3d (patch) | |
tree | 4b153a220409cd283f4eb67a5794cf41e5a6e502 | |
parent | f3f3de09660466c0adb6b132bb90f38894ece46e (diff) | |
download | buildroot-a13ea3b30b02580c0f582f2c2435818aa1921a3d.tar.gz buildroot-a13ea3b30b02580c0f582f2c2435818aa1921a3d.zip |
lsof: don't use host toolchain to determine target libc
The lsof Configure script builds a test program using the host toolchain to
test whether glibc is used. This test is broken in cross compilation
environment. Set LINUX_CLIB to avoid the test. This should give the correct
result even for non glibc toolchains, since all libc variants we support have
the netinet/tcp.h header.
Fixes:
http://autobuild.buildroot.net/results/a1f/a1f0572dbf968c21f70b35cefff7ef7a1d9a348a/
Cc: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/lsof/lsof.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/lsof/lsof.mk b/package/lsof/lsof.mk index f4b1b4cb8f..332d1f83a5 100644 --- a/package/lsof/lsof.mk +++ b/package/lsof/lsof.mk @@ -49,7 +49,8 @@ endef define LSOF_CONFIGURE_CMDS (cd $(@D) ; \ echo n | $(TARGET_CONFIGURE_OPTS) DEBUG="$(TARGET_CFLAGS) $(BR2_LSOF_CFLAGS)" \ - LSOF_INCLUDE="$(STAGING_DIR)/usr/include" LSOF_CFLAGS_OVERRIDE=1 ./Configure linux) + LSOF_INCLUDE="$(STAGING_DIR)/usr/include" LSOF_CFLAGS_OVERRIDE=1 \ + LINUX_CLIB=-DGLIBCV=2 ./Configure linux) $(LSOF_CONFIGURE_WCHAR_FIXUPS) $(LSOF_CONFIGURE_LOCALE_FIXUPS) endef |