diff options
author | Cem Keylan <cem@ckyln.com> | 2020-12-27 21:27:08 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-12-27 21:27:08 +0300 |
commit | 8452566badc5230a1f53b9239632c105e7e2c908 (patch) | |
tree | 21d5e6c708d1a9334e5c051fdb88b03d763574b8 /core/bearssl | |
parent | 6f697d6ade350636ab6ac5c9d6ef4fd9b0036a55 (diff) | |
download | repository-8452566badc5230a1f53b9239632c105e7e2c908.tar.gz |
bearssl: fix AR variable declaration
Diffstat (limited to 'core/bearssl')
-rwxr-xr-x | core/bearssl/build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bearssl/build b/core/bearssl/build index 9d84822d..29ead982 100755 --- a/core/bearssl/build +++ b/core/bearssl/build @@ -9,7 +9,7 @@ kinstall() { chmod "$1" "$3" } -[ "$CPT_CROSS_TRIPLET" ] && CC=$CPT_CROSS_TRIPLET-cc AR=$CPT_CROSS_TRIPLET +[ "$CPT_CROSS_TRIPLET" ] && CC=$CPT_CROSS_TRIPLET-cc AR=$CPT_CROSS_TRIPLET-ar make "CC=${CC:=cc}" "AR=${AR:=ar}" LD=$CC |