From afaeddb05be47d1d23de6a52d2ef68ed4392ead6 Mon Sep 17 00:00:00 2001 From: Marcel Greter Date: Fri, 12 Apr 2019 20:56:18 +0200 Subject: [PATCH] Fix spec testing on mac with shared build Since spec test runner now executes the tests in the directory of the spec test, the default library path resolution does no longer work with relative paths. --- script/ci-build-libsass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/ci-build-libsass b/script/ci-build-libsass index 5dc54187d..1ad5a60fe 100755 --- a/script/ci-build-libsass +++ b/script/ci-build-libsass @@ -128,10 +128,10 @@ then echo "Fetching Sass Spec PR $SPEC_PR" git -C sass-spec fetch -u origin pull/$SPEC_PR/head:ci-spec-pr-$SPEC_PR git -C sass-spec checkout --force ci-spec-pr-$SPEC_PR - LD_LIBRARY_PATH="$PREFIX/lib/" make $MAKE_OPTS test_probe + make LD_LIBRARY_PATH="$PREFIX/lib/" DYLD_LIBRARY_PATH="$PREFIX/lib/" $MAKE_OPTS test_probe else - LD_LIBRARY_PATH="$PREFIX/lib/" make $MAKE_OPTS test_probe + make LD_LIBRARY_PATH="$PREFIX/lib/" DYLD_LIBRARY_PATH="$PREFIX/lib/" $MAKE_OPTS test_probe fi else - LD_LIBRARY_PATH="$PREFIX/lib/" make $MAKE_OPTS test_probe + make LD_LIBRARY_PATH="$PREFIX/lib/" DYLD_LIBRARY_PATH="$PREFIX/lib/" $MAKE_OPTS test_probe fi