Skip to content

Commit d80a127

Browse files
authored
Merge pull request #19577 from bradcray/build-version-1-for-1-26
Bump build version to 1 on 1.26 branch to reflect late-breaking changes [reviewed by @ronawho] If I've kept my facts straight, this should bump the build version for the 1.26 branch to "1" the next time we respin the tarball, reflecting the changes in #19575. Unfortunately, I won't feel confident that this is working as intended until we merge and try to respin the tarball (either manually or via Jenkins). Elliot points out that with the current `--version` logic, this will only show up with `--devel --version` (which looks like a mistake to me, but one to fix back on `main` rather than here).
2 parents 06b1198 + fd461cc commit d80a127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: compiler/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ UPDATE_BUILD_VERSION = $(CHPL_MAKE_HOME)/util/devel/updateBuildVersion
143143
$(BUILD_VERSION_FILE): FORCE
144144
@({ test -e $(CHPL_MAKE_HOME)/.git ; } && \
145145
test -x $(UPDATE_BUILD_VERSION) && $(UPDATE_BUILD_VERSION) $@ $(CHPL_MAKE_HOME)) || \
146-
test -r $(BUILD_VERSION_FILE) || (echo '"0"' > $@);
146+
test -r $(BUILD_VERSION_FILE) || (echo '"1"' > $@);
147147

148148
$(CHPL_MAKE_HOME)/configured-prefix:
149149
echo > $(CHPL_MAKE_HOME)/configured-prefix

0 commit comments

Comments
 (0)