diff options
author | Paul Spooren <mail@aparcar.org> | 2020-07-23 10:20:57 -1000 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-07-29 17:13:51 +0200 |
commit | eda3da56a6847f94aaff42a493166670853b8bc6 (patch) | |
tree | 8c2be1d9b457fec5c4a6be711cc32095b86d7c10 /toolchain/glibc | |
parent | 6da53561950034da93d79db787e64fb5829c1ffe (diff) | |
download | upstream-eda3da56a6847f94aaff42a493166670853b8bc6.tar.gz upstream-eda3da56a6847f94aaff42a493166670853b8bc6.tar.bz2 upstream-eda3da56a6847f94aaff42a493166670853b8bc6.zip |
toolchain: add PKG_RELEASE if local files
The toolchain packages partly contain local code like patches and
configuration files. These files are not tracked via PKG_VERSION as this
variable only covers the upstream package version.
To allow versioning of the buildsystem, this commit adds PKG_RELEASE:=1
to all toolchain packages with local files. Whenever a local file is
changed the release must be increased.
This does not touch binutils and gcc for now, as these provide multiple
versions within one package.
Also update the copyright of touched files to 2020.
Signed-off-by: Paul Spooren <mail@aparcar.org>
[exclude binutils/gcc from patch, adjust commit title/message]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'toolchain/glibc')
-rw-r--r-- | toolchain/glibc/common.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolchain/glibc/common.mk b/toolchain/glibc/common.mk index 1a084d0862..9a9c4a5343 100644 --- a/toolchain/glibc/common.mk +++ b/toolchain/glibc/common.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2016 OpenWrt.org +# Copyright (C) 2006-2020 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,6 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=glibc PKG_VERSION:=2.31 +PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) |