mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
use config.status when available
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38316 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0d429924ce
commit
fae0957a46
1 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue