diff options
author | Xavi Artigas <xartigas.bugzilla@gmail.com> | 2016-03-02 13:38:55 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-03-02 13:38:55 +0200 |
commit | d059f37c709887216d4489f1235bc22da97a0647 (patch) | |
tree | 459c3d92d094b3cf62130ad388d71067104b55ef /data | |
parent | 6b52c65c2add3827fe2aff81052f14c1087c6fcc (diff) |
ndk-build: Windows by default appends commands one after another in foreach
Add some && at the end to ensure that they are interpreted as separate
commands and executed one after another.
Diffstat (limited to 'data')
-rwxr-xr-x | data/ndk-build/gstreamer-1.0.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/ndk-build/gstreamer-1.0.mk b/data/ndk-build/gstreamer-1.0.mk index b9fb54cc..41b76b59 100755 --- a/data/ndk-build/gstreamer-1.0.mk +++ b/data/ndk-build/gstreamer-1.0.mk @@ -203,7 +203,7 @@ endif delsharedlib_$(TARGET_ARCH_ABI): PRIV_B_DIR := $(GSTREAMER_BUILD_DIR) delsharedlib_$(TARGET_ARCH_ABI): @$(call host-rm,$(prebuilt)) - @$(foreach path,$(wildcard $(PRIV_B_DIR)/sed*), $(call host-rm,$(path));) + @$(foreach path,$(wildcard $(PRIV_B_DIR)/sed*), $(call host-rm,$(path)) && ) echo Done rm $(LOCAL_INSTALLED): delsharedlib_$(TARGET_ARCH_ABI) # Generates a source file that declares and registers all the required plugins @@ -243,9 +243,9 @@ copyjavasource_$(TARGET_ARCH_ABI): @$(call host-mkdir,$(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer) @$(call host-cp,$(GSTREAMER_NDK_BUILD_PATH)/GStreamer.java,$(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer) @$(foreach plugin,$(GSTREAMER_PLUGINS_WITH_CLASSES), \ - $(call host-mkdir,$(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/$(plugin));) + $(call host-mkdir,$(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/$(plugin)) && ) echo Done mkdir @$(foreach file,$(GSTREAMER_PLUGINS_CLASSES), \ - $(call host-cp,$(GSTREAMER_NDK_BUILD_PATH)$(file),$(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/$(file));) + $(call host-cp,$(GSTREAMER_NDK_BUILD_PATH)$(file),$(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/$(file)) && ) echo Done cp ifeq ($(GSTREAMER_INCLUDE_FONTS),yes) @$(HOST_SED) -i "s;@INCLUDE_FONTS@;;g" $(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/GStreamer.java else |