From 391b543e6c7a94ece0da58ef9ca0c2438b66f7c8 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Sat, 31 Jan 2015 20:55:45 +0000 Subject: [PATCH] use config.status when available git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@38317 72102866-910b-0410-8b05-ffd578937521 --- GNUmakefile.postamble | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/GNUmakefile.postamble b/GNUmakefile.postamble index e7ee36b..615b96b 100644 --- a/GNUmakefile.postamble +++ b/GNUmakefile.postamble @@ -67,5 +67,9 @@ after-distclean:: # after-check:: config.make: config.make.in - ./configure + if [ -x config.status ]; then \ + ./config.status --recheck; \ + else \ + ./configure; \ + fi