From e4f9375d5ea967d14845f55f3bf6be30da4f2552 Mon Sep 17 00:00:00 2001 From: j8takagi Date: Fri, 29 Sep 2023 19:53:23 +0900 Subject: [PATCH] =?utf8?q?make=20copyright=E3=81=AE=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 同一ファイルに複数のcopyrightがある場合にはすべて更新するように --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ace1e95..29b1a15 100644 --- a/Makefile +++ b/Makefile @@ -93,8 +93,8 @@ gittag: if test `$(GIT) status -s | $(WC) -l` -gt 0; then $(ECHO) "Error: commit, first."; exit 1; fi; if test "$(VERSIONGITREF)" != "$(MASTERGITREF)"; then $(GIT) tag $(VERSION); fi copyright: - $(SEDI) 's/Copyright (c) 2010-20[0-9][0-9]/Copyright (c) 2010-$(YEAR)/' LICENSE README - $(SEDI) 's/Copyright @copyright{} 2010-20[0-9][0-9]/Copyright @copyright{} 2010-$(YEAR)/' doc/*.texi + $(SEDI) 's/Copyright (c) 2010-20[0-9][0-9]/Copyright (c) 2010-$(YEAR)/g' LICENSE README + $(SEDI) 's/Copyright @copyright{} 2010-20[0-9][0-9]/Copyright @copyright{} 2010-$(YEAR)/g' doc/*.texi distclean: cmd-clean src-distclean gtags-clean version-clean clean -- 2.18.0