summaryrefslogtreecommitdiffstats
path: root/src/gst-plugins-good.mk
diff options
context:
space:
mode:
authorPavel Vatagin <pavelvat@gmail.com>2017-01-02 15:44:45 (GMT)
committerPavel Vatagin <pavelvat@gmail.com>2017-01-02 22:00:44 (GMT)
commitc9e6bee8e72baeb0711c91b9371ce88a1c3c766c (patch)
tree08e763f8d667ada511f39a7987755392f8481c5c /src/gst-plugins-good.mk
parente134a77279b36e6dccfc644c53c3cecf542c0d62 (diff)
downloadmxe-c9e6bee8e72baeb0711c91b9371ce88a1c3c766c.zip
mxe-c9e6bee8e72baeb0711c91b9371ce88a1c3c766c.tar.gz
mxe-c9e6bee8e72baeb0711c91b9371ce88a1c3c766c.tar.bz2
fix moving gstreamer dlls (#1288)
Diffstat (limited to 'src/gst-plugins-good.mk')
-rw-r--r--src/gst-plugins-good.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gst-plugins-good.mk b/src/gst-plugins-good.mk
index fe251e4..df35657 100644
--- a/src/gst-plugins-good.mk
+++ b/src/gst-plugins-good.mk
@@ -33,6 +33,7 @@ define $(PKG)_BUILD
$(MAKE) -C '$(1)' -j '$(JOBS)' install CFLAGS='-DWAVE_FORMAT_DOLBY_AC3_SPDIF=0x0092'
# some .dlls are installed to lib - no obvious way to change
- $(and $(BUILD_SHARED),
- mv -v '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/')
+ $(if $(BUILD_SHARED),
+ mv -vf '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/'
+ )
endef