From 6d186665f594a66e2df4364ef7407029e78e3c29 Mon Sep 17 00:00:00 2001 From: Bernhard Voelker Date: Mon, 30 Oct 2017 21:18:49 +0100 Subject: updatedb: use Copyright header of updatedb.sh Previously, the Copyright header output by 'updatedb --version' was not updated by 'make update-copyright', so it still showed 2010 as the Copyright year. * locate/updatedb.sh (version): Replace the Copyright header by the placeholder "@COPYRIGHT@" ... * locate/Makefile.am (updatedb): ... set here from the Copyright line extracted from 'updatedb.sh'. --- locate/Makefile.am | 3 +++ locate/updatedb.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'locate') diff --git a/locate/Makefile.am b/locate/Makefile.am index e2d80da1..58e87de9 100644 --- a/locate/Makefile.am +++ b/locate/Makefile.am @@ -46,6 +46,8 @@ updatedb: updatedb.sh Makefile rm -f $@ find=`echo find|sed '$(transform)'`; \ frcode=`echo frcode|sed '$(transform)'`; \ + copyright=`sed -n '/^# Copyright /{s/^..//;p;q}' $(srcdir)/updatedb.sh \ + grep .` || exit 1; \ sed \ -e "s,@""bindir""@,$(bindir)," \ -e "s,@""libexecdir""@,$(libexecdir)," \ @@ -59,6 +61,7 @@ updatedb: updatedb.sh Makefile -e "s,@""frcode""@,$${frcode}," \ -e "s,@""SORT""@,$(SORT)," \ -e "s,@""SORT_SUPPORTS_Z""@,$(SORT_SUPPORTS_Z)," \ + -e "s/@""COPYRIGHT""@/$${copyright}/" \ $(srcdir)/updatedb.sh > $@ chmod +x $@ diff --git a/locate/updatedb.sh b/locate/updatedb.sh index 88bfd86f..70cb4933 100644 --- a/locate/updatedb.sh +++ b/locate/updatedb.sh @@ -22,7 +22,7 @@ version=' updatedb (@PACKAGE_NAME@) @VERSION@ -Copyright (C) 2007,2008,2009,2010 Free Software Foundation, Inc. +@COPYRIGHT@ License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. -- cgit v1.2.1