diff options
author | Alexander Egorenkov <egorenar-dev@posteo.net> | 2023-06-08 08:34:13 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2024-01-15 17:35:31 +0100 |
commit | 5bfdd83393eb83cbc78915c16f190b26dabe9e13 (patch) | |
tree | 4b8a552dbaf310ae6dd823f63b528ffe2582e3d8 | |
parent | 66527d28ea19a7f1ecc8a58345d54391198363eb (diff) |
gettext-full: use autoreconf host fixup
To prevent use of host's library path on Void Linux:
/usr/lib/libacl.so: file not recognized: file format not recognized
collect2: error: ld returned 1 exit status
libtool: error: error: relink 'libgettextlib.la' with the above command before installing it
Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
-rw-r--r-- | package/libs/gettext-full/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/libs/gettext-full/Makefile b/package/libs/gettext-full/Makefile index 1ed0e82df0..eb5b6d31bd 100644 --- a/package/libs/gettext-full/Makefile +++ b/package/libs/gettext-full/Makefile @@ -25,6 +25,8 @@ PKG_INSTALL:=1 PKG_BUILD_DEPENDS:=gettext-full/host libunistring libxml2 PKG_BUILD_PARALLEL:=0 +PKG_FIXUP:=autoreconf + HOST_BUILD_DEPENDS:=gperf/host libunistring/host libxml2/host HOST_BUILD_PARALLEL:=0 |