Skip to content

Commit 3fa0e8e

Browse files
committed
ilbc friendlier whoa
1 parent 5545c89 commit 3fa0e8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cross_compile_ffmpeg.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ check_missing_packages () {
3535
echo 'Install the missing packages before running this script.'
3636
echo "for ubuntu: $ sudo apt-get install subversion curl texinfo g++ bison flex cvs yasm automake libtool autoconf gcc cmake git make pkg-config zlib1g-dev mercurial unzip pax -y"
3737
echo "for gentoo (a non ubuntu distro): same as above, but no g++, no gcc, git is dev-vcs/git, zlib1g-dev is zlib, pkg-config is dev-util/pkgconfig, add ed..."
38-
echo "for OS X (homebrew): brew install cvs hg yasm automake autoconf cmake hg"
38+
echo "for OS X (homebrew): brew install cvs hg yasm automake autoconf cmake hg libtool"
3939
exit 1
4040
fi
4141

@@ -590,7 +590,7 @@ build_libilbc() {
590590
do_git_checkout https://github.com/dekkers/libilbc.git libilbc_git
591591
cd libilbc_git
592592
if [[ ! -f "configure" ]]; then
593-
autoreconf -fiv
593+
autoreconf -fiv || exit 1 # failure here, OS X means "you need libtoolize" perhaps? http://betterlogic.com/roger/2014/12/ilbc-cross-compile-os-x-mac-woe/
594594
fi
595595
generic_configure_make_install
596596
cd ..
@@ -872,7 +872,7 @@ build_fdk_aac() {
872872
do_git_checkout https://github.com/mstorsjo/fdk-aac.git fdk-aac_git
873873
cd fdk-aac_git
874874
if [[ ! -f "configure" ]]; then
875-
autoreconf -fiv
875+
autoreconf -fiv || exit 1
876876
fi
877877
generic_configure_make_install
878878
cd ..

0 commit comments

Comments
 (0)