[Scummvm-git-logs] scummvm master -> bd8063a8b2e9dc093fc74ee769995116db3db6ac
lephilousophe
noreply at scummvm.org
Tue Jan 20 19:21:00 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
bd8063a8b2 DC: Fix version scheme
Commit: bd8063a8b2e9dc093fc74ee769995116db3db6ac
https://github.com/scummvm/scummvm/commit/bd8063a8b2e9dc093fc74ee769995116db3db6ac
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2026-01-20T20:20:55+01:00
Commit Message:
DC: Fix version scheme
This version scheme is not standard and would not work with KallistiOS
makeip. It works on the original one.
Version is in the form Vyymmp without any dot.
Changed paths:
backends/platform/dc/dreamcast.mk
diff --git a/backends/platform/dc/dreamcast.mk b/backends/platform/dc/dreamcast.mk
index 4d944c4a51c..aaa3d2b1fe6 100644
--- a/backends/platform/dc/dreamcast.mk
+++ b/backends/platform/dc/dreamcast.mk
@@ -30,7 +30,7 @@ ip.txt : $(srcdir)/backends/platform/dc/ip.txt.in
ver="GIT"; \
else ver="V$(VERSION)"; fi; \
if expr "$$ver" : V...... >/dev/null; then \
- ver="V$(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)"; fi; \
+ ver="$$(printf "V%02d%02d%d" $$(($(VER_MAJOR) - 2000)) $(VER_MINOR) $(VER_PATCH))"; fi; \
sed -e 's/[@]VERSION[@]/'"$$ver"/ -e 's/[@]DATE[@]/$(shell date '+%Y%m%d')/' < $< > $@
More information about the Scummvm-git-logs
mailing list