summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorH. Peter Anvin (Intel) <hpa@zytor.com>2020-06-04 18:30:35 -0700
committerH. Peter Anvin (Intel) <hpa@zytor.com>2020-06-04 18:30:35 -0700
commitd23200584c299e375d4caf0bbd89052bdfeb53c0 (patch)
tree9a7b51de54402ed37849710b8c4dcde1fcd4faec /Makefile.in
parentdc1a6c5306d4a978206b25f9ffbc1827561facd3 (diff)
downloadnasm-d23200584c299e375d4caf0bbd89052bdfeb53c0.tar.gz
Makefile: run cleandeps, no need to config.status --recheck
There is no point to run config.status --recheck just because we have changed Makefile.in. Just run config.status. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index b510face..2fa561b6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -546,9 +546,6 @@ alldeps: $(PERLREQ) tools/syncfiles.pl tools/mkdep.pl
$(DEPDIRS)
$(RM_F) *.dep
if [ -f config.status ]; then \
- if [ $(EXTERNAL_DEPENDENCIES) -eq 1 ]; then \
- sh config.status --recheck; \
- fi; \
sh config.status; \
fi
@@ -560,9 +557,6 @@ cleandeps: $(PERLREQ) tools/syncfiles.pl tools/mkdep.pl
$(DEPDIRS)
$(RM_F) *.dep
if [ -f config.status ]; then \
- if [ $(EXTERNAL_DEPENDENCIES) -eq 0 ]; then \
- sh config.status --recheck; \
- fi; \
sh config.status; \
fi