From 628429d7f63357e6d8bda9c91c6e8d7f9359226b Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Tue, 21 Jan 2020 13:24:42 -0800 Subject: [PATCH] Fix another readlink in for mac buildsuper script --- custom/bin/buildsuper_x64-mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/bin/buildsuper_x64-mac.sh b/custom/bin/buildsuper_x64-mac.sh index ff3699a8..7113ed24 100755 --- a/custom/bin/buildsuper_x64-mac.sh +++ b/custom/bin/buildsuper_x64-mac.sh @@ -11,7 +11,7 @@ CODE_HOME="$(dirname "$LOCATION")" # Find the most reasonable candidate build file SOURCE="$1" if [ -z "$SOURCE" ]; then - SOURCE="$(readlink -f "$CODE_HOME/4coder_default_bindings.cpp")" + SOURCE="$(realpath "$CODE_HOME/4coder_default_bindings.cpp")" fi # NOTE(yuval): Removed -Wno-writable-strings as it is the same as -Wno-write-strings