diff options
author | jstebbins <[email protected]> | 2014-01-28 15:12:43 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-01-28 15:12:43 +0000 |
commit | f6fcca5b7109f929dc0a707a757e14de59d9ec1b (patch) | |
tree | 7a9a05cd5a38c16b36a3edbb9c798fde6af4d051 | |
parent | 42a162275242af21ea72df3e5dff620d340199cf (diff) |
Fix the order of libraries when linking HandBrakeCLI
The new libbluray has a dependency on freetype. Ubuntu
didn't like the order, all other builds were ok :-\
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6007 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | test/module.defs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/module.defs b/test/module.defs index d231ccb78..ce60e0d46 100644 --- a/test/module.defs +++ b/test/module.defs @@ -15,9 +15,9 @@ TEST.libs = $(LIBHB.a) TEST.GCC.l = \ a52 ass avcodec avformat avutil avresample dvdnav dvdread \ - fontconfig freetype fribidi mp3lame ogg \ + fontconfig fribidi mp3lame ogg \ samplerate swscale theoraenc theoradec vorbis vorbisenc x264 \ - bluray xml2 bz2 z + bluray freetype xml2 bz2 z ifeq (1,$(FEATURE.qsv)) TEST.GCC.D += USE_QSV HAVE_THREADS=1 |