Commit 175ef35e authored by Felix Paul Kühne's avatar Felix Paul Kühne

contribs: fixed distribution of libass when using Apple's Intel-variant of ld

parent c5b155b6
......@@ -2442,7 +2442,11 @@ libass:
(cd $@; autoreconf -ivf)
.libass: libass .freetype
ifdef HAVE_DARWIN_OS
(cd $<; $(HOSTCC) ./configure --disable-png --disable-shared $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS) -O3" && make && make install)
else
(cd $<; $(HOSTCC) ./configure --disable-png $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS) -O3" && make && make install)
endif
touch $@
CLEAN_FILE += .libass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment