From 4c538fb5273c596bb6a63e04c5c6df3586e21ffd Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 13 Aug 2008 00:01:46 +0200 Subject: [PATCH 1/1] 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 --- Makefile.am | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index ae21bca16..a4260ea8e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 -- 2.30.2