[vlc-commits] apple/build: bootstrap only if configure does not exist
    Felix Paul Kühne 
    git at videolan.org
       
    Fri Dec  6 18:27:06 CET 2019
    
    
  
vlc | branch: master | Felix Paul Kühne <felix at feepk.net> | 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}"
    
    
More information about the vlc-commits
mailing list