From 71f0d1e76204bc52360954b6f4e2e94227987e49 Mon Sep 17 00:00:00 2001 From: Ryder Mackay Date: Fri, 30 Jul 2021 17:20:30 -0400 Subject: [PATCH] Don't copy to build dir --- scripts/get-ios.sh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/scripts/get-ios.sh b/scripts/get-ios.sh index 69ba63070..a569ee652 100755 --- a/scripts/get-ios.sh +++ b/scripts/get-ios.sh @@ -11,19 +11,3 @@ for dep in $deps ; do name="$dep" get_prebuilt_dep done - -deps+=" libsasl-ios" -if test "x$CONFIGURATION_BUILD_DIR" != x ; then - mkdir -p "$CONFIGURATION_BUILD_DIR" - cd "$scriptpath/../Externals" - for dep in $deps ; do - if test -d "$dep" ; then - if test -d "$dep"/lib ; then - rsync -a "$dep"/lib/ "$CONFIGURATION_BUILD_DIR" - fi - if test -d "$dep"/include ; then - rsync -a "$dep"/include/ "$CONFIGURATION_BUILD_DIR/include/" - fi - fi - done -fi