# HG changeset patch # User David Demelier # Date 1564426200 -7200 # Node ID f231cc8010942db7b689bd784b964f052f43ba67 # Parent 71e6b0d31f00a952d86c8bb3694155729dc81c81 core/gettext: make sure libintl.so is installed diff -r 71e6b0d31f00 -r f231cc801094 core/gettext/gettext.sh --- a/core/gettext/gettext.sh Mon Jul 29 20:35:00 2019 +0200 +++ b/core/gettext/gettext.sh Mon Jul 29 20:50:00 2019 +0200 @@ -42,16 +42,19 @@ LDFLAGS="$LDFLAGS" \ LIBS="$LIBS" \ ./configure \ + --with-included-gettext \ --prefix= \ --enable-shared \ - --disable-static \ - --enable-nls + --disable-static make make install DESTDIR=$DESTDIR for i in gettextpo gettextsrc gettextlib intl asprintf; do rm -f $DESTDIR/lib/lib$i.la done + # Avoid conflict with musl. + rm -f $DESTDIR/include/libintl.h + cd .. rm -rf $PKGNAME-$PKGVERSION }