diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2022-03-25 14:40:37 +0200 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2022-03-30 12:43:21 +0300 |
commit | 757e53b9aa7ce92e8b269bc3d2b46f5c6b4d76d5 (patch) | |
tree | cfbe708788ee1456a30558d2e208deceb9e7251d /libs/gnutls | |
parent | c5d92fd9ca86f98c239355d4a03a3f6800c24b90 (diff) |
gnutls: add build dependency on gettext-full/host
The gnutls package uses the gettext-version fixup, which is only
available if gettext-full/host has been built. Add the missing build
dependency to fix these errors:
bash: line 1: /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/gettext: No such file or directory
bash: line 1: /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/autopoint: No such file or directory
It also prevents configure from using host gettext:
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/gmsgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
vs:
checking for msgfmt... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/msgfmt
checking for gmsgfmt... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/gmsgfmt
checking for xgettext... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/xgettext
checking for msgmerge... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/msgmerge
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'libs/gnutls')
-rw-r--r-- | libs/gnutls/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index 353cc6ea4..4396d7cd7 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -21,6 +21,7 @@ PKG_LICENSE:=LGPL-2.1-or-later PKG_CPE_ID:=cpe:/a:gnu:gnutls PKG_INSTALL:=1 +PKG_BUILD_DEPENDS:=gettext-full/host PKG_BUILD_PARALLEL:=1 PKG_LIBTOOL_PATHS:=. lib |