diff options
author | Martin Kelly <martin@surround.io> | 2015-12-10 16:55:43 -0800 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-12-14 10:11:26 +0100 |
commit | 43c7159d2e2e704b8acd6b002661abc0fcecc380 (patch) | |
tree | 19247d5d0853e9ca964d33b9ebc169c30594029b /data | |
parent | ec50967d7d540eae5f0d72066d5c2ce1e518c43c (diff) |
gstreamer-1.0.mk: fix missing ";" bug
Several command invocations wrapped in for-each are missing ";"
characters, which meant they get expanded on one line instead of
separate lines. For some for-each invocations, you can get away with
this and it will be OK, but for something like host-cp, it changes the
meaning. As a result, some host-cp invocations will fail with errors
like:
cp: target ‘X’ is not a directory
Fix this by adding the necessary semicolons.
https://bugzilla.gnome.org/show_bug.cgi?id=759380
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 1b434300..7d529c80 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));) $(LOCAL_INSTALLED): delsharedlib_$(TARGET_ARCH_ABI) # Generates a source file that declares and registers all the required plugins @@ -243,11 +243,11 @@ 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));) @$(foreach file,$(GSTREAMER_PLUGINS_CLASSES), \ $(call host-cp, \ $(GSTREAMER_NDK_BUILD_PATH)$(file), \ - $(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/$(file))) + $(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/$(file));) ifeq ($(GSTREAMER_INCLUDE_FONTS),yes) @$(HOST_SED) -i "s;@INCLUDE_FONTS@;;g" $(GSTREAMER_JAVA_SRC_DIR)/org/freedesktop/gstreamer/GStreamer.java else |