From: Stefano Lattarini Date: Tue, 28 May 2013 13:58:06 +0000 (+0200) Subject: maint: test minimal supported autoconf through convenience target X-Git-Tag: v1.13.2b~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc9d8f26dbeadc908248b6992770f531c69b655b;p=platform%2Fupstream%2Fautomake.git maint: test minimal supported autoconf through convenience target * maint.mk (check-minimal-autoconf): New convenience target. Signed-off-by: Stefano Lattarini --- diff --git a/maint.mk b/maint.mk index cb883d73e..fe09135af 100644 --- a/maint.mk +++ b/maint.mk @@ -517,6 +517,21 @@ build-minimal-autoconf: $(AM_V_at)echo ' ======' && $(ac-d)/bin/autoconf --version .PHONY: build-minimal-autoconf +check-minimal-autoconf: + $(AM_V_GEN): \ + && PATH='$(CURDIR)/$(ac-d)/bin$(PATH_SEPARATOR)'$$PATH \ + && export PATH \ + && AUTOCONF=autoconf \ + && AUTOHEADER=autoheader \ + && AUTORECONF=autoreconf \ + && AUTOM4TE=autom4te \ + && AUTOUPDATE=autoupdate \ + && export AUTOCONF AUTOHEADER AUTORECONF AUTOM4TE AUTOUPDATE \ + && ./configure $(shell ./config.status --config) \ + && $(MAKE) check +.PHONY: check-minimal-autoconf + + # --------------------------------------------------------------- # # Testing on real-world packages can help us avoid regressions. # # --------------------------------------------------------------- #