diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-19 02:37:56 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-19 02:37:56 +0000 |
commit | fd181101aa8700929ad9ea1e9112c3de77dc7731 (patch) | |
tree | f19553001791a66157d844ad7e8c482180f6e573 | |
parent | e8892241f6ece28ba2a4035bdcf3cb5c0983716b (diff) | |
download | upstream-fd181101aa8700929ad9ea1e9112c3de77dc7731.tar.gz upstream-fd181101aa8700929ad9ea1e9112c3de77dc7731.tar.bz2 upstream-fd181101aa8700929ad9ea1e9112c3de77dc7731.zip |
autotools.mk: add a (dummy) libintl build dependency to any package using the libtool fixup
SVN-Revision: 24700
-rw-r--r-- | include/autotools.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/autotools.mk b/include/autotools.mk index 5e1c1053e4..592fcdebd7 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -61,14 +61,14 @@ define autoreconf_target endef ifneq ($(filter libtool,$(PKG_FIXUP)),) - PKG_BUILD_DEPENDS += libtool + PKG_BUILD_DEPENDS += libtool libintl ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),) Hooks/Configure/Pre += autoreconf_target endif endif ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),) - PKG_BUILD_DEPENDS += libtool + PKG_BUILD_DEPENDS += libtool libintl ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),) Hooks/Configure/Pre += autoreconf_target endif |