diff options
author | Cem Keylan <cem@ckyln.com> | 2020-06-12 11:21:24 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-06-12 11:21:24 +0300 |
commit | 726d6b5ff1083cd0a9f47cb97ca331ae8bf68259 (patch) | |
tree | a676251181331176dd47a0bd27cc79f2448396d7 /core/bearssl/build | |
parent | 7a3aa7ad7a13c769c09f1ce043343c0ebec41e25 (diff) | |
download | repository-726d6b5ff1083cd0a9f47cb97ca331ae8bf68259.tar.gz |
bearssl: add patches from michael
Diffstat (limited to 'core/bearssl/build')
-rwxr-xr-x | core/bearssl/build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/bearssl/build b/core/bearssl/build index 88cfba4f..0b40bffc 100755 --- a/core/bearssl/build +++ b/core/bearssl/build @@ -1,5 +1,9 @@ #!/bin/sh -e +for patch in *.patch; do + patch -p1 < "$patch" +done + kinstall() { mkdir -p "${3%/*}"; cp "$2" "$3" chmod "$1" "$3" |