[vlc-commits] contrib/ebml: fix variable order

Felix Paul Kühne git at videolan.org
Tue Jul 23 11:54:14 CEST 2019


vlc | branch: master | Felix Paul Kühne <felix at feepk.net> | Tue Jul 23 11:52:32 2019 +0200| [28a2031676cdd6b12576982a2b62e65f366f4d49] | committer: Felix Paul Kühne

contrib/ebml: fix variable order

Previously, the specific CXXFLAGS weren't respected so the visibility flags never applied.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=28a2031676cdd6b12576982a2b62e65f366f4d49
---

 contrib/src/ebml/rules.mak | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/src/ebml/rules.mak b/contrib/src/ebml/rules.mak
index 13c6bc2ffc..0f6fb65ec7 100644
--- a/contrib/src/ebml/rules.mak
+++ b/contrib/src/ebml/rules.mak
@@ -20,6 +20,6 @@ ebml: libebml-$(EBML_VERSION).tar.xz .sum-ebml
 EBML_CXXFLAGS := $(CXXFLAGS) $(PIC) -fexceptions -fvisibility=hidden
 
 .ebml: ebml toolchain.cmake
-	cd $< && $(HOSTVARS_PIC) CXXFLAGS="$(EBML_CXXFLAGS)" $(CMAKE) -DBUILD_SHARED_LIBS=OFF -DENABLE_WIN32_IO=OFF
+	cd $< && CXXFLAGS="$(EBML_CXXFLAGS)" $(HOSTVARS_PIC) $(CMAKE) -DBUILD_SHARED_LIBS=OFF -DENABLE_WIN32_IO=OFF
 	cd $< && $(MAKE) install
 	touch $@



More information about the vlc-commits mailing list