[vlc-commits] contribs: vorbis: Detect clang even with an absolute path
Hugo Beauzée-Luyssen
git at videolan.org
Fri Apr 21 18:06:36 CEST 2017
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Fri Apr 21 18:02:42 2017 +0200| [1927fddb3f03716f8e9f66909d5567f3e81220a0] | committer: Hugo Beauzée-Luyssen
contribs: vorbis: Detect clang even with an absolute path
Fix android-x86 builds
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1927fddb3f03716f8e9f66909d5567f3e81220a0
---
contrib/src/vorbis/rules.mak | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/src/vorbis/rules.mak b/contrib/src/vorbis/rules.mak
index c6dc5a6df0..51747b2137 100644
--- a/contrib/src/vorbis/rules.mak
+++ b/contrib/src/vorbis/rules.mak
@@ -24,7 +24,7 @@ $(TARBALLS)/libvorbis-$(VORBIS_VERSION).tar.xz:
libvorbis: libvorbis-$(VORBIS_VERSION).tar.xz .sum-vorbis
$(UNPACK)
-ifeq ($(CC), clang)
+ifneq (,$(filter %clang,$(CC)))
$(APPLY) $(SRC)/vorbis/clang.patch
endif
$(UPDATE_AUTOCONFIG)
More information about the vlc-commits
mailing list