From 02328172809d6ef74b48ccbcb6eaa53ba08f9fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Lang=C3=B3?= Date: Mon, 26 Feb 2018 15:30:37 +0100 Subject: [PATCH] Fix build failure of NuttX tools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CI is broken after 'https://bitbucket.org/nuttx/tools/commits/164450f982b404fdc2b3233db51dc3eaa1f08b7f', because it cannot find 'aclocal-1.15'. JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com --- targets/nuttx-stm32f4/Makefile.travis | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/targets/nuttx-stm32f4/Makefile.travis b/targets/nuttx-stm32f4/Makefile.travis index 48af0955b5..81b6a8f9a7 100644 --- a/targets/nuttx-stm32f4/Makefile.travis +++ b/targets/nuttx-stm32f4/Makefile.travis @@ -31,7 +31,9 @@ LOCAL_INSTALL:=$(CURDIR)/../local/ install-kconfig: git clone https://bitbucket.org/nuttx/tools.git ../tools mkdir -p $(LOCAL_INSTALL) - cd ../tools/kconfig-frontends && ./configure --disable-mconf --disable-nconf --disable-gconf --disable-qconf --disable-utils --disable-shared --enable-static --prefix=$(LOCAL_INSTALL) + # FIXME: 'autoreconf --force --install' is a workaround after + # https://bitbucket.org/nuttx/tools/commits/164450f982b404fdc2b3233db51dc3eaa1f08b7f + cd ../tools/kconfig-frontends && autoreconf --force --install && ./configure --disable-mconf --disable-nconf --disable-gconf --disable-qconf --disable-utils --disable-shared --enable-static --prefix=$(LOCAL_INSTALL) $(MAKE) -C ../tools/kconfig-frontends $(MAKE) -C ../tools/kconfig-frontends install