Skip to content

Commit be82cff

Browse files
committedOct 5, 2022
8294748: Cleanup unneeded references to hg
Reviewed-by: erikj, clanger
1 parent 43dbf58 commit be82cff

7 files changed

+8
-18
lines changed
 

‎make/RunTests.gmk

+3-5
Original file line numberDiff line numberDiff line change
@@ -1185,13 +1185,11 @@ ifeq ($(TEST_OPTS_JCOV), true)
11851185
JCOV_SOURCE_DIFF := $(JCOV_OUTPUT_DIR)/source_diff
11861186
JCOV_DIFF_COVERAGE_REPORT := $(JCOV_OUTPUT_DIR)/diff_coverage_report
11871187

1188-
ifneq ($(and $(HG), $(wildcard $(TOPDIR)/.hg)), )
1189-
DIFF_COMMAND := $(HG) -R $(TOPDIR) diff -r $(TEST_OPTS_JCOV_DIFF_CHANGESET) > $(JCOV_SOURCE_DIFF)
1190-
else ifneq ($(and $(GIT), $(wildcard $(TOPDIR)/.git)), )
1188+
ifneq ($(and $(GIT), $(wildcard $(TOPDIR)/.git)), )
11911189
DIFF_COMMAND := $(GIT) -C $(TOPDIR) diff $(TEST_OPTS_JCOV_DIFF_CHANGESET) > $(JCOV_SOURCE_DIFF)
11921190
else
1193-
$(info Error: Must be either hg or git source tree for diff coverage.)
1194-
$(error Neither hg nor git source tree.)
1191+
$(info Error: Must be a git source tree for diff coverage.)
1192+
$(error No git source tree.)
11951193
endif
11961194

11971195
jcov-gen-diffcoverage: jcov-stop-grabber

‎make/RunTestsPrebuiltSpec.gmk

-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ ZIPEXE := zip
169169
UNZIP := unzip
170170
EXPR := expr
171171
FILE := file
172-
HG := hg
173172
ULIMIT := ulimit
174173

175174
ifeq ($(OPENJDK_BUILD_OS), windows)

‎make/SourceRevision.gmk

+2-6
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ $(eval $(call IncludeCustomExtension, SourceRevision-pre.gmk))
4242
STORED_SOURCE_REVISION := $(TOPDIR)/.src-rev
4343

4444
USE_SCM := false
45-
ifneq ($(and $(HG), $(wildcard $(TOPDIR)/.hg)), )
46-
USE_SCM := true
47-
SCM_DIR := .hg
48-
ID_COMMAND := $(PRINTF) "hg:%s" "$$($(HG) id -i)"
49-
else ifneq ($(and $(GIT), $(wildcard $(TOPDIR)/.git)), )
45+
ifneq ($(and $(GIT), $(wildcard $(TOPDIR)/.git)), )
5046
USE_SCM := true
5147
SCM_DIR := .git
5248
ID_COMMAND := $(PRINTF) "git:%s%s\n" \
@@ -85,7 +81,7 @@ ifeq ($(USE_SCM), true)
8581
REPO_REVISIONS += $$(SUPPORT_OUTPUTDIR)/src-rev/$$($1_FILENAME)
8682
endef
8783

88-
# Setup rules for all repos. This makes sure all the "hg id" calls are made
84+
# Setup rules for all repos. This makes sure all the "git log" calls are made
8985
# in parallel.
9086
$(foreach repo, $(call FindAllReposRel), \
9187
$(eval $(call SetupGetRevisionForRepo, $(repo))) \

‎make/autoconf/basic.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ AC_DEFUN_ONCE([BASIC_CHECK_SRC_PERMS],
453453
# in the source tree when configure runs
454454
file_to_test="$TOPDIR/Makefile"
455455
if test `$STAT -c '%a' "$file_to_test"` -lt 400; then
456-
AC_MSG_ERROR([Bad file permissions on src files. This is usually caused by cloning the repositories with a non cygwin hg in a directory not created in cygwin.])
456+
AC_MSG_ERROR([Bad file permissions on src files. This is usually caused by cloning the repositories with non cygwin tools in a directory not created in cygwin.])
457457
fi
458458
fi
459459
])

‎make/autoconf/basic_tools.m4

-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,6 @@ AC_DEFUN_ONCE([BASIC_SETUP_COMPLEX_TOOLS],
342342
343343
UTIL_LOOKUP_PROGS(READELF, greadelf readelf)
344344
UTIL_LOOKUP_PROGS(DOT, dot)
345-
UTIL_LOOKUP_PROGS(HG, hg)
346345
UTIL_LOOKUP_PROGS(STAT, stat)
347346
UTIL_LOOKUP_PROGS(TIME, time)
348347
UTIL_LOOKUP_PROGS(FLOCK, flock)

‎make/autoconf/spec.gmk.in

-1
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,6 @@ READELF:=@READELF@
769769
EXPR:=@EXPR@
770770
FILE:=@FILE@
771771
DOT:=@DOT@
772-
HG:=@HG@
773772
GIT:=@GIT@
774773
OBJCOPY:=@OBJCOPY@
775774
SETFILE:=@SETFILE@

‎make/common/MakeBase.gmk

+2-3
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,13 @@ endef
127127
# the build was created from
128128
SOURCE_REVISION_TRACKER := $(SUPPORT_OUTPUTDIR)/src-rev/source-revision-tracker
129129

130-
# Locate all hg repositories included in the forest, as absolute paths
130+
# Locate all sourcecode repositories included in the forest, as absolute paths
131131
FindAllReposAbs = \
132132
$(strip $(sort $(dir $(filter-out $(TOPDIR)/build/%, $(wildcard \
133-
$(addprefix $(TOPDIR)/, .hg */.hg */*/.hg */*/*/.hg */*/*/*/.hg) \
134133
$(addprefix $(TOPDIR)/, .git */.git */*/.git */*/*/.git */*/*/*/.git) \
135134
)))))
136135

137-
# Locate all hg repositories included in the forest, as relative paths
136+
# Locate all sourcecode repositories included in the forest, as relative paths
138137
FindAllReposRel = \
139138
$(strip $(subst $(TOPDIR)/,.,$(patsubst $(TOPDIR)/%/, %, $(FindAllReposAbs))))
140139

0 commit comments

Comments
 (0)
Please sign in to comment.