diff options
author | Romain Naour <romain.naour@gmail.com> | 2016-08-21 23:36:48 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-22 16:45:56 +0200 |
commit | fdb14fb9bb5e77ccd6578a9739eaeb4c88ce85df (patch) | |
tree | c2d49a22160646e6574c5daf63b8772f296e9cdf | |
parent | 4249837f422c8d560d38693c132dd7be58cbb900 (diff) | |
download | buildroot-fdb14fb9bb5e77ccd6578a9739eaeb4c88ce85df.tar.gz buildroot-fdb14fb9bb5e77ccd6578a9739eaeb4c88ce85df.zip |
package/trousers: needs host-pkgconf
Otherwise the build fail with this error:
configure.in:53: error: possibly undefined macro: AC_MSG_ERROR
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.in:95: error: possibly undefined macro: AM_CONDITIONAL
Also, there is a PKG_CHECK_MODULES used for GTK.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/trousers/trousers.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/trousers/trousers.mk b/package/trousers/trousers.mk index be6ce390a7..3d9e0badc2 100644 --- a/package/trousers/trousers.mk +++ b/package/trousers/trousers.mk @@ -12,7 +12,7 @@ TROUSERS_LICENSE_FILES = LICENSE TROUSERS_INSTALL_STAGING = YES # Need autoreconf because of a patch touching configure.in and Makefile.am TROUSERS_AUTORECONF = YES -TROUSERS_DEPENDENCIES = openssl +TROUSERS_DEPENDENCIES = host-pkgconf openssl ifeq ($(BR2_PACKAGE_LIBICONV),y) TROUSERS_DEPENDENCIES += libiconv |