From b83d2e74f14f31ef90cee294538d60d8119c82ef Mon Sep 17 00:00:00 2001 From: rfm Date: Sat, 31 Jan 2015 20:52:53 +0000 Subject: [PATCH] use config.status when available git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38316 72102866-910b-0410-8b05-ffd578937521 --- SSL/Makefile.postamble | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/SSL/Makefile.postamble b/SSL/Makefile.postamble index 110afb745..d5392234c 100644 --- a/SSL/Makefile.postamble +++ b/SSL/Makefile.postamble @@ -76,10 +76,18 @@ after-distclean:: # after-check:: config.mak: config.mak.in - ./configure + if [ -x config.status ]; then \ + ./config.status --recheck; \ + else \ + ./configure; \ + fi config.h: config.h.in - ./configure + if [ -x config.status ]; then \ + ./config.status --recheck; \ + else \ + ./configure; \ + fi # PS: the config.h file is specific to the target that was configured. # At the moment, we use a single config.h file in ./, so if you want