Skip to content

Commit 05019a0

Browse files
committed
Do not remove config.guess/sub in distclean
We check in both config.guess and config.sub. There's no need to delete these files as part of distclean. They shouldn't be considered generated or external dependencies, they are a part of our source code. Signed-off-by: Robert Young <[email protected]>
1 parent 7189cd9 commit 05019a0

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

run_configure.mk

+1-7
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ sh configure --disable-auto-build-flag 'OMRGLUE=$(OMRGLUE)' 'SPEC=$(SPEC)' $(CON
133133
touch $(CONFIGURE_OUTPUT_FILES)
134134
endef
135135

136-
CONFIGURE_DEPENDENCIES := SPEC config.guess config.sub configure tools/configure
136+
CONFIGURE_DEPENDENCIES := SPEC configure tools/configure
137137
CONFIGURE_OUTPUT_FILES := include_core/omrcfg.h include_core/omrversionstrings.h omrmakefiles/configure.mk ./omr.rc tools/toolconfigure.mk CONFIGURE_SENTINEL_FILE
138138
CONFIGURE_INPUT_FILES := include_core/omrcfg.h.in include_core/omrversionstrings.h.in omrmakefiles/configure.mk.in ./omr.rc.in tools/toolconfigure.mk.in
139139
CONFIGURE_BYPRODUCTS := config.cache config.status config.log autom4te.cache tools/config.cache tools/config.status toolconfig/config.log tools/autom4te.cache
@@ -154,12 +154,6 @@ else
154154
@echo "WARNING: autoconf needs to be re-run in $$PWD/tools. You should do this by hand, or set HAS_AUTOCONF=1 to have this makefile do it for you."
155155
endif
156156

157-
config.guess:
158-
curl -o config.guess "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD"
159-
160-
config.sub:
161-
curl -o config.sub "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD"
162-
163157
# Since configure has many output files, we are using a 'sentinel file' to make
164158
# sure that this recipe is only executed once when running configure in parallel.
165159
# This file is created by the CONFIGURE_RECIPE command.

0 commit comments

Comments
 (0)