This update includes fixes for[1]: * CVE-2020-7919 - doesn't appear to be published publicly yet * CVE-2020-0601 - a Windows-related issue [1]: https://github.com/golang/go/issues?q=milestone%3AGo1.13.7+label%3ACherryPickApproved Signed-off-by: Jeffery To <jeffery.to@gmail.com>
14 lines
304 B
Makefile
14 lines
304 B
Makefile
#
|
|
# Copyright (C) 2018 Jeffery To
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
ifeq ($(origin GO_INCLUDE_DIR),undefined)
|
|
GO_INCLUDE_DIR:=$(dir $(lastword $(MAKEFILE_LIST)))
|
|
endif
|
|
|
|
|
|
GO_VERSION_MAJOR_MINOR:=1.13
|
|
GO_VERSION_PATCH:=7
|