lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit aafbeea12b10e98b9ea9a05c996730988a938cf5
parent 7088374279c28f2e2b9a4aa0c99c424fa423ab45
Author: Jo-Philipp Wich <jo@mein.io>
Date:   Tue, 12 Jul 2016 20:52:14 +0200

procps-ng: add required build dependencies

Since 3048ebedec5b989a621529eec159cf5aa17b58b6 added a autoreconfig fixup to
procps-ng, the build fails on certain systems with errors like

    configure.ac:72: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION

or

    configure:14998: error: possibly undefined macro: AM_ICONV_LINKFLAGS_BODY

Fix the issue by adding build time dependencies on the `gettext` and `libiconv`
stub libraries to ensure that `gettext.m4` and `iconv.m4` are installed into
the staging directory before `procps-ng` is getting reconfigured.

Fixes https://github.com/openwrt/packages/issues/2890#issuecomment-231115844

Signed-off-by: Jo-Philipp Wich <jo@mein.io>

Diffstat:
Mutils/procps-ng/Makefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/utils/procps-ng/Makefile b/utils/procps-ng/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=procps-ng PKG_VERSION:=3.3.11 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_LICENSE:=GPL-2.0 PKG_LICENSE_FILES:=COPYING COPYING.LIB @@ -22,6 +22,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_BUILD_PARALLEL:=1 PKG_INSTALL:=1 PKG_FIXUP:=autoreconf +PKG_BUILD_DEPENDS:=gettext libiconv include $(INCLUDE_DIR)/package.mk