Skip to content

Commit 412ce77

Browse files
committed
Omit the target name from the 'ln' command.
Repetitive invocation of ln try to create nested directories.
1 parent 0e9fd65 commit 412ce77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2083,7 +2083,7 @@ for deployment_target in "${HOST_TARGET}" "${CROSS_TOOLS_DEPLOYMENT_TARGETS[@]}"
20832083
BUILT_CXX_INCLUDE_DIR="$llvm_build_dir/include"
20842084

20852085
echo "symlinking the system headers ($HOST_CXX_HEADERS_DIR) into the local clang build directory ($BUILT_CXX_INCLUDE_DIR)."
2086-
ln -s -f "$HOST_CXX_HEADERS_DIR" "$BUILT_CXX_INCLUDE_DIR/c++"
2086+
ln -s -f "$HOST_CXX_HEADERS_DIR" "$BUILT_CXX_INCLUDE_DIR"
20872087

20882088
{ set +x; } 2>/dev/null
20892089
fi

0 commit comments

Comments
 (0)