0023-apple-build-bootstrap-only-if-configure-does-not-exi.patch 823 B

1234567891011121314151617181920212223242526272829
  1. From 506bbbc13bd5290384c8e4a36d1b86d30ec518b4 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <felix@feepk.net>
  3. Date: Wed, 27 Nov 2019 20:57:31 +0100
  4. Subject: [PATCH 23/24] apple/build: bootstrap only if configure does not exist
  5. ---
  6. extras/package/apple/build.sh | 5 ++++-
  7. 1 file changed, 4 insertions(+), 1 deletion(-)
  8. diff --git a/extras/package/apple/build.sh b/extras/package/apple/build.sh
  9. index 8643f11d74..f2ceb2a971 100755
  10. --- a/extras/package/apple/build.sh
  11. +++ b/extras/package/apple/build.sh
  12. @@ -585,7 +585,10 @@ fi
  13. # Bootstrap VLC
  14. cd "$VLC_SRC_DIR" || abort_err "Failed cd to VLC source dir"
  15. -./bootstrap
  16. +if ! [ -e configure ]; then
  17. + echo "Bootstraping vlc"
  18. + ./bootstrap
  19. +fi
  20. # Build
  21. mkdir -p "${VLC_BUILD_DIR}/build/${VLC_PSEUDO_TRIPLET}"
  22. --
  23. 2.21.0 (Apple Git-122.2)