mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 12:26:52 +08:00
Fix problem with ar_to_bc.sh script introduced by r357450.
The new code wasn't matching absolute paths correctly. Should unbreak sanitizer-x86_64-linux bot. llvm-svn: 357502
This commit is contained in:
@@ -9,8 +9,8 @@ if [ "$#" -le 1 ]; then
|
||||
usage
|
||||
fi
|
||||
|
||||
[[ AR == /* ]] || AR=$PWD/$AR
|
||||
[[ LINK == /* ]] || LINK=$PWD/$LINK
|
||||
[[ $AR == /* ]] || AR=$PWD/$AR
|
||||
[[ $LINK == /* ]] || LINK=$PWD/$LINK
|
||||
|
||||
INPUTS=
|
||||
OUTPUT=
|
||||
|
||||
Reference in New Issue
Block a user