[Scummvm-git-logs] scummvm master -> 13973889a5c031cabea0338c26967291c008b939

bluegr bluegr at gmail.com
Sat Aug 7 09:01:09 UTC 2021


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5fc24d5ab0 DEVTOOLS: Add also engines/detection_table.h for dist
13973889a5 DEVTOOLS: Fix output of ideprojects


Commit: 5fc24d5ab0bdd8356c91008dd8f5c4a2d1dc4e59
    https://github.com/scummvm/scummvm/commit/5fc24d5ab0bdd8356c91008dd8f5c4a2d1dc4e59
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2021-08-07T12:01:05+03:00

Commit Message:
DEVTOOLS: Add also engines/detection_table.h for dist

Changed paths:
    ports.mk


diff --git a/ports.mk b/ports.mk
index 82756bc8f6..cb3d95e459 100644
--- a/ports.mk
+++ b/ports.mk
@@ -546,9 +546,9 @@ else ifeq "$(CUR_BRANCH)" ""
 	$(error You must be on a release branch)
 endif
 	@echo Creating Code::Blocks project files...
-	@cd $(srcdir)/dists/codeblocks && $(PWD)/devtools/create_project/create_project ../.. --codeblocks >/dev/null && git add -f engines/plugins_table.h *.workspace *.cbp
+	@cd $(srcdir)/dists/codeblocks && $(PWD)/devtools/create_project/create_project ../.. --codeblocks >/dev/null && git add -f engines/*.h *.workspace *.cbp
 	@echo Creating MSVC project files...
-	@cd $(srcdir)/dists/msvc && $(PWD)/devtools/create_project/create_project ../.. --use-canonical-lib-names --msvc-version 12 --msvc >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
+	@cd $(srcdir)/dists/msvc && $(PWD)/devtools/create_project/create_project ../.. --use-canonical-lib-names --msvc-version 12 --msvc >/dev/null && git add -f engines/*.h *.sln *.vcxproj *.vcxproj.filters *.props
 	@echo
 	@echo All is done.
 	@echo Now run


Commit: 13973889a5c031cabea0338c26967291c008b939
    https://github.com/scummvm/scummvm/commit/13973889a5c031cabea0338c26967291c008b939
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2021-08-07T12:01:05+03:00

Commit Message:
DEVTOOLS: Fix output of ideprojects

\t appears literally instead of as a tab.

Changed paths:
    ports.mk


diff --git a/ports.mk b/ports.mk
index cb3d95e459..693440396d 100644
--- a/ports.mk
+++ b/ports.mk
@@ -552,7 +552,7 @@ endif
 	@echo
 	@echo All is done.
 	@echo Now run
-	@echo "\tgit commit -m 'DISTS: Generated Code::Blocks and MSVC project files'"
+	@echo -e "\tgit commit -m 'DISTS: Generated Code::Blocks and MSVC project files'"
 
 # Mark special targets as phony
 .PHONY: deb bundle osxsnap install uninstall




More information about the Scummvm-git-logs mailing list