diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-03 23:58:53 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 01:37:14 +0200 |
commit | 68637236e9a00db088be68991f024e9d4afa25eb (patch) | |
tree | 078c1cb3ff5eb52386f8d8bc3c36d78ebd6c04aa /package/gptfdisk | |
parent | ae087e850ad5ff5d87b950723cf1430707462222 (diff) | |
download | buildroot-68637236e9a00db088be68991f024e9d4afa25eb.tar.gz buildroot-68637236e9a00db088be68991f024e9d4afa25eb.zip |
gptfdisk: 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
special code that was handling this.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gptfdisk')
-rw-r--r-- | package/gptfdisk/gptfdisk.mk | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/package/gptfdisk/gptfdisk.mk b/package/gptfdisk/gptfdisk.mk index 9c9442145e..c5826dfb8d 100644 --- a/package/gptfdisk/gptfdisk.mk +++ b/package/gptfdisk/gptfdisk.mk @@ -22,13 +22,8 @@ GPTFDISK_DEPENDENCIES += ncurses endif ifeq ($(BR2_STATIC_LIBS),y) -# gptfdisk dependencies may link against libintl/libiconv, so we need -# to do so as well when linking statically -ifeq ($(BR2_PACKAGE_GETTEXT),y) -GPTFDISK_DEPENDENCIES += gettext -GPTFDISK_LDLIBS += -lintl -endif - +# gptfdisk dependencies may link against libiconv, so we need to do so +# as well when linking statically ifeq ($(BR2_PACKAGE_LIBICONV),y) GPTFDISK_DEPENDENCIES += libiconv GPTFDISK_LDLIBS += -liconv |