diff options
author | spiff_ <spiff_@svn> | 2010-05-12 01:18:47 +0000 |
---|---|---|
committer | spiff_ <spiff_@svn> | 2010-05-12 01:18:47 +0000 |
commit | dc6575d9fa4519b9a5c700db06a6acd6ecbe18d6 (patch) | |
tree | 6e42863df493904f6c299b01d064aa395999747f /Makefile.in | |
parent | 1a7df9e82a8dfa3fe7583a5f4c5e879e41c33cbb (diff) |
fixed: fall back to internal libass if the system one does not cut it
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30033 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index be48250334..48144734a3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -64,7 +64,7 @@ DVDPCODECS_DIRS= \ xbmc/cores/dvdplayer/Codecs \ xbmc/cores/dvdplayer/Codecs/libdvd \ xbmc/cores/dvdplayer/Codecs/libbdnav -ifeq ($(findstring osx,$(ARCH)),osx) +ifneq (@USE_EXTERNAL_LIBASS@,1) DVDPCODECS_DIRS+=lib/libass/xbmc endif @@ -326,7 +326,7 @@ python: dllloader dvdpcodecs: dllloader $(MAKE) -C xbmc/cores/dvdplayer/Codecs $(MAKE) -C xbmc/cores/dvdplayer/Codecs/libdvd -ifeq ($(findstring osx,$(ARCH)), osx) +ifneq (@USE_EXTERNAL_LIBASS@,1) $(MAKE) -C lib/libass/xbmc endif eventclients: |