diff options
author | 2017-07-03 23:24:24 +0200 | |
---|---|---|
committer | 2017-07-05 01:37:15 +0200 | |
commit | 39a1d529b34a5fd0f506bcc72758d12013786660 (patch) | |
tree | 08e48cafc6446622223aa0982c9bfee8b38b5453 /package/xfsprogs/xfsprogs.mk | |
parent | 3ba3474a4bb924a3f21cab4aa60d7b34a4da8062 (diff) | |
download | buildroot-39a1d529b34a5fd0f506bcc72758d12013786660.tar.gz buildroot-39a1d529b34a5fd0f506bcc72758d12013786660.tar.bz2 |
xfsprogs: remove libintl static linking handling
We no longer support building the full-blown libintl in static linking
scenarios, as it causes too many problems. Therefore, remove the
patch and special code that was handling this.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/xfsprogs/xfsprogs.mk')
-rw-r--r-- | package/xfsprogs/xfsprogs.mk | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/package/xfsprogs/xfsprogs.mk b/package/xfsprogs/xfsprogs.mk index ed56d3484e..2f708f1fa4 100644 --- a/package/xfsprogs/xfsprogs.mk +++ b/package/xfsprogs/xfsprogs.mk @@ -18,23 +18,6 @@ XFSPROGS_CONF_OPTS = \ INSTALL_GROUP=root \ --enable-static -# xfsprogs links some of its programs to libs from util-linux, which use -# i18n functions. For shared-only builds, that's automatically pulled in. -# Static builds need some help, though... -# -# No need to depend on gettext in this case: xfsprogs does not use it for -# itself; util-linux does need it and has it in its own dependencies. -# -# xfsprogs' buildsystem uses hand-made Makefiles, not automake, and they -# do not use the LIBS variable set by configure. So we use EXTRALIBS that -# is added by our patch. -# -# It is not needed to propagate the EXTRALIBS to the install step. -ifeq ($(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS)$(BR2_NEEDS_GETTEXT_IF_LOCALE),yy) -XFSPROGS_CONF_OPTS += LIBS=-lintl -XFSPROGS_MAKE_OPTS = EXTRALIBS=-lintl -endif - XFSPROGS_INSTALL_TARGET_OPTS = DIST_ROOT=$(TARGET_DIR) install $(eval $(autotools-package)) |