[Scummvm-git-logs] scummvm master -> b5ca1b340e1a6249997fde8a60f366d039b868b4
spleen1981
noreply at scummvm.org
Sat Apr 29 01:23:04 UTC 2023
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:
b5ca1b340e LIBRETRO: BUILD: add test for zip availability
Commit: b5ca1b340e1a6249997fde8a60f366d039b868b4
https://github.com/scummvm/scummvm/commit/b5ca1b340e1a6249997fde8a60f366d039b868b4
Author: Giovanni Cascione (ing.cascione at gmail.com)
Date: 2023-04-29T03:22:55+02:00
Commit Message:
LIBRETRO: BUILD: add test for zip availability
Changed paths:
backends/platform/libretro/Makefile.common
diff --git a/backends/platform/libretro/Makefile.common b/backends/platform/libretro/Makefile.common
index 5c709ba1af0..7a1772591d1 100644
--- a/backends/platform/libretro/Makefile.common
+++ b/backends/platform/libretro/Makefile.common
@@ -199,6 +199,9 @@ all: $(TARGET) scummvm.zip $(TARGET_NAME)_libretro.info
#bundle_files
scummvm.zip: $(SCUMMVM_PATH)/dists/scummvm.rc
@echo Preparing $@
+ifeq (, $(shell which zip))
+ $(error "No zip found, consider doing apt-get install zip")
+endif
@$(SCRIPTS_PATH)/bundle_datafiles.sh $(ROOT_PATH) $(SCUMMVM_PATH) bundle $(TARGET_NAME)
$(TARGET_NAME)_libretro.info: $(SCUMMVM_PATH)/dists/scummvm.rc
More information about the Scummvm-git-logs
mailing list