* maint.mk (check-minimal-autoconf): New convenience target. Signed-off-by: Stefano Lattarini <stefano.lattar...@gmail.com> --- maint.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+)
diff --git a/maint.mk b/maint.mk index cb883d7..fe09135 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. # # --------------------------------------------------------------- # -- 1.8.3.rc3.8.g5e49f30