diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-07-06 12:32:06 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-07-06 12:32:06 +0300 |
commit | 0bcf75bc5c5b96c67e15e7207d28d645b8195b0b (patch) | |
tree | 2e0ef8839b2de527aa83a44a8535c58421a0852c /data/ndk-build/gstreamer-1.0.mk | |
parent | 68624925eaab3b665beea215c690df8a41b74cd5 (diff) |
android: Remove \n from the source generator
On OSX they apparently end up as literal '\n' in the code instead of newlines.
https://bugzilla.gnome.org/show_bug.cgi?id=768456
Diffstat (limited to 'data/ndk-build/gstreamer-1.0.mk')
-rwxr-xr-x | data/ndk-build/gstreamer-1.0.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/ndk-build/gstreamer-1.0.mk b/data/ndk-build/gstreamer-1.0.mk index 1f896194..06bd00a1 100755 --- a/data/ndk-build/gstreamer-1.0.mk +++ b/data/ndk-build/gstreamer-1.0.mk @@ -142,18 +142,18 @@ GSTREAMER_PLUGINS_WITH_CLASSES := $(strip \ # Generate the plugins' declaration strings GSTREAMER_PLUGINS_DECLARE := $(foreach plugin, $(GSTREAMER_PLUGINS), \ - GST_PLUGIN_STATIC_DECLARE($(plugin));\n) + GST_PLUGIN_STATIC_DECLARE($(plugin));) # Generate the plugins' registration strings GSTREAMER_PLUGINS_REGISTER := $(foreach plugin, $(GSTREAMER_PLUGINS), \ - GST_PLUGIN_STATIC_REGISTER($(plugin));\n) + GST_PLUGIN_STATIC_REGISTER($(plugin));) # Generate list of gio modules G_IO_MODULES_PATH := $(foreach path, $(G_IO_MODULES_PATH), -L$(path)) G_IO_MODULES_LIBS := $(foreach module, $(G_IO_MODULES), -lgio$(module)) G_IO_MODULES_DECLARE := $(foreach module, $(G_IO_MODULES), \ - GST_G_IO_MODULE_DECLARE($(module));\n) + GST_G_IO_MODULE_DECLARE($(module));) G_IO_MODULES_LOAD := $(foreach module, $(G_IO_MODULES), \ - GST_G_IO_MODULE_LOAD($(module));\n) + GST_G_IO_MODULE_LOAD($(module));) # Get the full list of libraries # link at least to gstreamer-1.0 in case the plugins list is empty |