diff options
author | DINH Viet Hoa <dinh.viet.hoa@gmail.com> | 2013-03-03 00:57:32 -0800 |
---|---|---|
committer | DINH Viet Hoa <dinh.viet.hoa@gmail.com> | 2013-03-03 00:57:32 -0800 |
commit | d6c89c5effc7fed91e3ccb129bacc22c5d3c8d38 (patch) | |
tree | 99f0d70e18b12638e471d9498c5564104467917d /scripts | |
parent | 79c4f1edb34408602d569987052d0daca542ddb7 (diff) |
Fixed to match latest libetpan build system
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prepare-libetpan-macos.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/prepare-libetpan-macos.sh b/scripts/prepare-libetpan-macos.sh index 5fb1a402..4993cad5 100755 --- a/scripts/prepare-libetpan-macos.sh +++ b/scripts/prepare-libetpan-macos.sh @@ -50,12 +50,13 @@ pushd . >/dev/null cp -R "$builddir/downloads/libetpan" "$srcdir/libetpan" echo building libetpan -cd "$srcdir/libetpan" -./autogen.sh -cd "$srcdir/libetpan/build-mac" -./update.sh +cd "$srcdir/libetpan/build-mac" xcodebuild -project libetpan.xcodeproj -target "static libetpan" -configuration Release SYMROOT="$tmpdir/bin" OBJROOT="$tmpdir/obj" +if test x$? != x0 ; then + echo failed + exit 1 +fi echo finished cd "$tmpdir/bin" |