diff options
author | Tianling Shen <cnsztl@immortalwrt.org> | 2023-05-17 21:08:40 +0800 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2023-05-18 11:35:29 +0200 |
commit | 48ed07bc0b94b930d369baf911014bedd5bf6a7e (patch) | |
tree | a9b4a50b621a0212b349e73140e8066cf94476d5 /package/kernel/lantiq/ltq-deu | |
parent | 3a6657540c3d6fc50a63caf8432e301e825ada16 (diff) | |
download | upstream-48ed07bc0b94b930d369baf911014bedd5bf6a7e.tar.gz upstream-48ed07bc0b94b930d369baf911014bedd5bf6a7e.tar.bz2 upstream-48ed07bc0b94b930d369baf911014bedd5bf6a7e.zip |
treewide: replace AUTORELEASE with real PKG_RELEASE
Based on Paul Fertser <fercerpav@gmail.com>'s guidance:
Change AUTORELEASE in rules.mk to:
```
AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))
```
then update all affected packages by:
```
for i in $(git grep -l PKG_RELEASE:=.*AUTORELEASE | sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
make package/$i/clean
done
```
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Diffstat (limited to 'package/kernel/lantiq/ltq-deu')
-rw-r--r-- | package/kernel/lantiq/ltq-deu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/lantiq/ltq-deu/Makefile b/package/kernel/lantiq/ltq-deu/Makefile index 32a3b5c1b0..4e8127afab 100644 --- a/package/kernel/lantiq/ltq-deu/Makefile +++ b/package/kernel/lantiq/ltq-deu/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=ltq-deu -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=45 PKG_MAINTAINER:=John Crispin <john@phrozen.org> PKG_LICENSE:=GPL-2.0+ |