summaryrefslogtreecommitdiffstats
path: root/package/e2fsprogs
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2014-11-19 15:04:50 +0100
committerPeter Korsgaard <peter@korsgaard.com>2014-11-19 15:04:50 +0100
commit32c2385f268bd7a2f7d1f55d712c5de648bfc657 (patch)
treee51eb1046ccd3e7f11bfe6a29e8883e9e34db810 /package/e2fsprogs
parent6ea07d5286c00ac286615d4bc340c531fbfc5ebd (diff)
downloadbuildroot-32c2385f268bd7a2f7d1f55d712c5de648bfc657.tar.gz
buildroot-32c2385f268bd7a2f7d1f55d712c5de648bfc657.zip
e2fsprogs: fix static linking issues with libintl
Util-linux (and hence libuuid) links against libintl if BR2_NEEDS_GETTEXT_IF_LOCALE, so e2fsprogs needs to link against it as when when statically linking, otherwise the configure test for libuuid (and later linking) fails. Fixes: http://autobuild.buildroot.net/results/833/8338a03028de9502be506a80bd947d80b3e50a49/ http://autobuild.buildroot.net/results/361/361aa2e47a7561ff6624829bdfcfe66ecaddc4a6/ http://autobuild.buildroot.net/results/4dc/4dc157bb9cd2e86b9b88ff9c1b66468fa930ede4/ http://autobuild.buildroot.net/results/ebf/ebf02964de98f82e7d5509c68cbfacdb5bc6f87e/ And many more. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/e2fsprogs')
-rw-r--r--package/e2fsprogs/e2fsprogs.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/e2fsprogs/e2fsprogs.mk b/package/e2fsprogs/e2fsprogs.mk
index 3961a94f91..8ee316a039 100644
--- a/package/e2fsprogs/e2fsprogs.mk
+++ b/package/e2fsprogs/e2fsprogs.mk
@@ -29,6 +29,12 @@ ifeq ($(BR2_nios2),y)
E2FSPROGS_CONF_ENV += ac_cv_func_fallocate=no
endif
+ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
+# util-linux libuuid pulls in libintl if needed, so ensure we also
+# link against it, otherwise static linking fails
+E2FSPROGS_CONF_ENV += LIBS=-lintl
+endif
+
E2FSPROGS_DEPENDENCIES = host-pkgconf util-linux
E2FSPROGS_MAKE_OPTS = \
OpenPOWER on IntegriCloud