vlc | branch: master | Felix Paul Kühne <[email protected]> | Wed Nov 27 20:57:31 
2019 +0100| [f18af1b1c9029c199afd7d38e952ea3e4a1e12a0] | committer: Felix Paul 
Kühne

apple/build: bootstrap only if configure does not exist

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f18af1b1c9029c199afd7d38e952ea3e4a1e12a0
---

 extras/package/apple/build.sh | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/extras/package/apple/build.sh b/extras/package/apple/build.sh
index e0508370a9..3a0a9b8819 100755
--- a/extras/package/apple/build.sh
+++ b/extras/package/apple/build.sh
@@ -585,7 +585,10 @@ fi
 
 # Bootstrap VLC
 cd "$VLC_SRC_DIR" || abort_err "Failed cd to VLC source dir"
-./bootstrap
+if ! [ -e configure ]; then
+    echo "Bootstraping vlc"
+    ./bootstrap
+fi
 
 # Build
 mkdir -p "${VLC_BUILD_DIR}/build/${VLC_PSEUDO_TRIPLET}"

_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to