diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-20 17:09:05 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-20 19:31:03 +0100 |
commit | f03faaf3ab5bbd5f375c47c3cf12f1254d1237bd (patch) | |
tree | c20ba0cd8c0bf7d571ea6e8c8aacd76ceb8a3aac /package/automake/automake.mk | |
parent | c8ff60c8283b0ad116fcf43f485f199c29432c9d (diff) | |
download | buildroot-novena-f03faaf3ab5bbd5f375c47c3cf12f1254d1237bd.tar.gz buildroot-novena-f03faaf3ab5bbd5f375c47c3cf12f1254d1237bd.zip |
automake: add build dependency on host-autoconf
automake for the target fails to build if autoconf is not installed on
the host:
checking whether autoconf is installed... no
configure: error: Autoconf 2.58 or better is required.
Please make sure it is installed and in your PATH.
make: *** [/home/test/brbuilttest/build/automake-1.10/.stamp_configured] Error 1
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/automake/automake.mk')
-rw-r--r-- | package/automake/automake.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/automake/automake.mk b/package/automake/automake.mk index eb3b3755e..db935a466 100644 --- a/package/automake/automake.mk +++ b/package/automake/automake.mk @@ -11,7 +11,7 @@ ifeq ($(BR2_ENABLE_DEBUG),y) # install-exec doesn't install aclocal stuff AUTOMAKE_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install endif -AUTOMAKE_DEPENDENCIES = autoconf microperl +AUTOMAKE_DEPENDENCIES = host-autoconf autoconf microperl HOST_AUTOMAKE_DEPENDENCIES = host-autoconf |