From c2341961decf2acbb435ee5dd1bd430571b595e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 5 Jun 2015 12:42:59 +0300 Subject: Better compatibility with autoconf projects --- core/deps.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/deps.mk b/core/deps.mk index 4fd8a1f..b8027e1 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -493,9 +493,9 @@ else endif endif endif - @if [ -f $(DEPS_DIR)/$(1)/configure.ac ]; then \ + @if [ -f $(DEPS_DIR)/$(1)/configure.ac -o -f $(DEPS_DIR)/$(1)/configure.in ]; then \ echo " AUTO " $(1); \ - cd $(DEPS_DIR)/$(1) && autoreconf -vif; \ + cd $(DEPS_DIR)/$(1) && autoreconf -Wall -vif -I m4; \ fi -@if [ -f $(DEPS_DIR)/$(1)/configure ]; then \ echo " CONF " $(1); \ -- cgit v1.2.3