diff options
author | Hiroki Tagato <tagattie@FreeBSD.org> | 2020-06-18 11:10:36 +0000 |
---|---|---|
committer | Hiroki Tagato <tagattie@FreeBSD.org> | 2020-06-18 11:10:36 +0000 |
commit | ec227d995e7e919af83b67e79c79ea4507582743 (patch) | |
tree | 12621f512ba0992d7f1a7af714cdaccc4bc24f44 /editors/atom/files/node/patch-configure.py | |
parent | security/vuxml: CVE-2020-8618 and CVE-2020-8619 (diff) |
Update to 1.48.0
Approved by: mentors (implicit)
Chnagelog: https://github.com/atom/atom/releases/tag/v1.48.0
Notes
Notes:
svn path=/head/; revision=539536
Diffstat (limited to 'editors/atom/files/node/patch-configure.py')
-rw-r--r-- | editors/atom/files/node/patch-configure.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/atom/files/node/patch-configure.py b/editors/atom/files/node/patch-configure.py new file mode 100644 index 000000000000..f069527a7b00 --- /dev/null +++ b/editors/atom/files/node/patch-configure.py @@ -0,0 +1,11 @@ +--- configure.py.orig 2020-06-16 06:19:09 UTC ++++ configure.py +@@ -705,7 +705,7 @@ def get_nasm_version(asm): + + def get_llvm_version(cc): + return get_version_helper( +- cc, r"(^(?:FreeBSD )?clang version|based on LLVM) ([3-9]\.[0-9]+)") ++ cc, r"(^(?:FreeBSD )?clang version|based on LLVM) ([0-9]+\.[0-9]+)") + + def get_xcode_version(cc): + return get_version_helper( |