[Scummvm-git-logs] scummvm master -> f1c5891524bbcb21776344bacde25d9f170a2fa4
lephilousophe
noreply at scummvm.org
Sun Nov 21 20:00:58 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
f1c5891524 PORTS: Install plugins in dist-generic target
Commit: f1c5891524bbcb21776344bacde25d9f170a2fa4
https://github.com/scummvm/scummvm/commit/f1c5891524bbcb21776344bacde25d9f170a2fa4
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2021-11-21T21:00:51+01:00
Commit Message:
PORTS: Install plugins in dist-generic target
Changed paths:
ports.mk
diff --git a/ports.mk b/ports.mk
index 435d5738de..5b123a4b75 100644
--- a/ports.mk
+++ b/ports.mk
@@ -56,7 +56,7 @@ endif
# Special generic target for simple archive distribution
-dist-generic: $(EXECUTABLE)
+dist-generic: $(EXECUTABLE) $(PLUGINS)
mkdir -p ./dist-generic/scummvm/data
mkdir -p ./dist-generic/scummvm/doc
cp $(EXECUTABLE) ./dist-generic/scummvm
@@ -75,6 +75,9 @@ ifdef DIST_FILES_SHADERS
mkdir -p ./dist-generic/scummvm/data/shaders
cp $(DIST_FILES_SHADERS) ./dist-generic/scummvm/data/shaders
endif
+ifeq ($(DYNAMIC_MODULES),1)
+ @for i in $(PLUGINS); do cp $$i ./dist-generic/scummvm; done
+endif
# Special target to create a application wrapper for Mac OS X
More information about the Scummvm-git-logs
mailing list