mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-10-30 14:55:26 +03:00
build-sys: remove non-POSIX variable names
Makefile.am:24: shell echo $$(( $(VERSION: non-POSIX variable name Makefile.am:24: (probably a GNU make extension) Makefile.am:26: shell echo $$(($(VERSION: non-POSIX variable name Makefile.am:26: (probably a GNU make extension) Makefile.am:29: shell echo $$(($(VERSION: non-POSIX variable name Makefile.am:29: (probably a GNU make extension) Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
parent
a3b55b1c47
commit
4c538fb527
@ -12,6 +12,8 @@ EXTRA_DIST = \
|
||||
docs \
|
||||
autogen.sh
|
||||
|
||||
PREVIOUS_VERSION = `expr $(VERSION) - 1`
|
||||
|
||||
distclean-local:
|
||||
rm -f *~
|
||||
rm -rf autom4te.cache
|
||||
@ -21,12 +23,12 @@ distclean-local:
|
||||
rm -f udev-$(VERSION).tar.gz udev-$(VERSION).tar.bz2
|
||||
|
||||
changelog:
|
||||
@ head -1 ChangeLog | grep -q "to v$(shell echo $$(($(VERSION) - 1)))"
|
||||
@ head -1 ChangeLog | grep -q "to $(PREVIOUS_VERSION)"
|
||||
@ mv ChangeLog ChangeLog.tmp
|
||||
@ echo "Summary of changes from v$(shell echo $$(($(VERSION) - 1))) to v$(VERSION)" >> ChangeLog
|
||||
@ echo "Summary of changes from v$(PREVIOUS_VERSION) to v$(VERSION)" >> ChangeLog
|
||||
@ echo "============================================" >> ChangeLog
|
||||
@ echo >> ChangeLog
|
||||
@ git log --pretty=short $(shell echo $$(($(VERSION) - 1)))..HEAD | git shortlog >> ChangeLog
|
||||
@ git log --pretty=short $(PREVIOUS_VERSION)..HEAD | git shortlog >> ChangeLog
|
||||
@ echo >> ChangeLog
|
||||
@ cat ChangeLog
|
||||
@ cat ChangeLog.tmp >> ChangeLog
|
||||
|
Loading…
Reference in New Issue
Block a user