diff options
author | Jan Macku <jamacku@redhat.com> | 2021-09-13 10:14:56 +0200 |
---|---|---|
committer | Jan Macku <jamacku@redhat.com> | 2021-09-13 10:30:27 +0200 |
commit | a1546251a184dae81a34cf2ddda51934f7ce7157 (patch) | |
tree | 16298709f7c509fb782cc815a4cccbacb56a75ad /Makefile | |
parent | 3e07ebc4319e713b9d7ec402cb1fa47bf14340dd (diff) | |
download | initscripts-a1546251a184dae81a34cf2ddda51934f7ce7157.tar initscripts-a1546251a184dae81a34cf2ddda51934f7ce7157.tar.gz initscripts-a1546251a184dae81a34cf2ddda51934f7ce7157.tar.bz2 initscripts-a1546251a184dae81a34cf2ddda51934f7ce7157.tar.xz initscripts-a1546251a184dae81a34cf2ddda51934f7ce7157.zip |
Translated using Weblate (Czech)
Currently translated at 90.5% (143 of 158 strings)
spec: Replace not working awk command with sed (#382)
Sed command get version number from spec file and increment last
number by one. Work like old awk command was intended to work.
Source: https://stackoverflow.com/questions/14348432/how-to-find-replace-and-increment-a-matched-number-with-sed-awk/14348899
(cherry picked from commit bfda3cc2acdea827909e6c89bda5bbb5140cda6c)
Co-authored-by: Jan Macku <jamacku@redhat.com>
Translate-URL: https://translate.fedoraproject.org/projects/fedora-sysv/initscripts/cs/
Translation: fedora-sysv/initscripts
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ localstatedir = /var sharedstatedir = $(localstatedir)/lib VERSION := $(shell gawk '/Version:/ { print $$2 }' initscripts.spec) -NEXT_VERSION := $(shell gawk '/Version:/ { print $$2 + 0.01 }' initscripts.spec) +NEXT_VERSION := $(shell sed -nr 's/Version:[ ]*([0-9]*)\.([0-9]*)\.([0-9]*)/echo "\1\.\2\.$$((\3+1))"/gep' initscripts.spec) all: make-binaries make-translations |