mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
Update the copyright notice in files ending in '.in' because the
script change-copyright-year did not handle them. Update the script as well. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14087
This commit is contained in:
parent
3534b0f75d
commit
7aefdaa6ef
@ -16,14 +16,14 @@
|
||||
|
||||
# The find command deliberately skips .svn/ subdirs -- we don't want to
|
||||
# change them.
|
||||
for i in `find . -name '*.[chS]' -type f -not -path '*.svn\/*'` ; do
|
||||
for i in `find . -name '*.[chS]' -o -name '*.in' -type f -not -path '*.svn\/*'` ; do
|
||||
echo $i
|
||||
perl -p -e 's/Copyright \(C\) 20([0-1])([0-9])-2012/Copyright (C) 20$1$2-2013/' < $i > tmp.$$
|
||||
if [ -L $i ]; then continue; fi # skip symbolic links
|
||||
perl -p -e 's/Copyright \(C\) 20([0-1])([0-9])-2013/Copyright (C) 20$1$2-2014/' < $i > tmp.$$
|
||||
mv tmp.$$ $i
|
||||
|
||||
# Copyright IBM Corp. 2010-2011
|
||||
|
||||
perl -p -e 's/Copyright IBM Corp. 20([0-1])([0-9])-2012/Copyright IBM Corp. 20$1$2-2013/' < $i > tmp.$$
|
||||
perl -p -e 's/Copyright IBM Corp. 20([0-1])([0-9])-2013/Copyright IBM Corp. 20$1$2-2014/' < $i > tmp.$$
|
||||
mv tmp.$$ $i
|
||||
done
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
# This file is part of Cachegrind, a Valgrind tool for cache
|
||||
# profiling programs.
|
||||
#
|
||||
# Copyright (C) 2002-2005 Nicholas Nethercote
|
||||
# Copyright (C) 2002-2013 Nicholas Nethercote
|
||||
# njn@valgrind.org
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
@ -158,7 +158,7 @@ usage: cg_annotate [options] cachegrind-out-file [source-files...]
|
||||
-I<d> --include=<d> add <d> to list of directories to search for
|
||||
source files
|
||||
|
||||
cg_annotate is Copyright (C) 2002-2007 Nicholas Nethercote.
|
||||
cg_annotate is Copyright (C) 2002-2013 Nicholas Nethercote.
|
||||
and licensed under the GNU General Public License, version 2.
|
||||
Bug reports, feedback, admiration, abuse, etc, to: njn\@valgrind.org.
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
# This file is part of Cachegrind, a Valgrind tool for cache
|
||||
# profiling programs.
|
||||
#
|
||||
# Copyright (C) 2002-2010 Nicholas Nethercote
|
||||
# Copyright (C) 2002-2013 Nicholas Nethercote
|
||||
# njn@valgrind.org
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
@ -52,7 +52,7 @@ usage: cg_diff [options] <cachegrind-out-file1> <cachegrind-out-file2>
|
||||
to filenames, eg. --mod-filename='s/prog[0-9]/projN/'
|
||||
--mod-funcname=<expr> like --mod-filename, but applied to function names
|
||||
|
||||
cg_diff is Copyright (C) 2010-2010 Nicholas Nethercote.
|
||||
cg_diff is Copyright (C) 2002-2013 Nicholas Nethercote.
|
||||
and licensed under the GNU General Public License, version 2.
|
||||
Bug reports, feedback, admiration, abuse, etc, to: njn\@valgrind.org.
|
||||
|
||||
|
||||
@ -8,11 +8,11 @@
|
||||
# This file is part of Callgrind, a cache-simulator and call graph
|
||||
# tracer built on Valgrind.
|
||||
#
|
||||
# Copyright (C) 2003 Josef Weidendorfer
|
||||
# Copyright (C) 2003-2013 Josef Weidendorfer
|
||||
# Josef.Weidendorfer@gmx.de
|
||||
#
|
||||
# This file is based heavily on cg_annotate, part of Valgrind.
|
||||
# Copyright (C) 2002 Nicholas Nethercote
|
||||
# Copyright (C) 2002-2013 Nicholas Nethercote
|
||||
# njn@valgrind.org
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
# This file is part of Callgrind, a cache-simulator and call graph
|
||||
# tracer built on Valgrind.
|
||||
#
|
||||
# Copyright (C) 2003-2011 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>
|
||||
# Copyright (C) 2003-2013 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License as
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
# This file is part of Massif, a Valgrind tool for profiling memory
|
||||
# usage of programs.
|
||||
#
|
||||
# Copyright (C) 2007-2007 Nicholas Nethercote
|
||||
# Copyright (C) 2007-2013 Nicholas Nethercote
|
||||
# njn@valgrind.org
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
@ -76,7 +76,7 @@ usage: ms_print [options] massif-out-file
|
||||
--x=<4..1000> graph width, in columns [72]
|
||||
--y=<4..1000> graph height, in rows [20]
|
||||
|
||||
ms_print is Copyright (C) 2007-2007 Nicholas Nethercote.
|
||||
ms_print is Copyright (C) 2007-2013 Nicholas Nethercote.
|
||||
and licensed under the GNU General Public License, version 2.
|
||||
Bug reports, feedback, admiration, abuse, etc, to: njn\@valgrind.org.
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
# This file is part of Valgrind, a dynamic binary instrumentation
|
||||
# framework.
|
||||
#
|
||||
# Copyright (C) 2005 Nicholas Nethercote
|
||||
# Copyright (C) 2005-2013 Nicholas Nethercote
|
||||
# njn@valgrind.org
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
# This file is part of Valgrind, a dynamic binary instrumentation
|
||||
# framework.
|
||||
#
|
||||
# Copyright (C) 2003 Nicholas Nethercote
|
||||
# Copyright (C) 2003-2013 Nicholas Nethercote
|
||||
# njn@valgrind.org
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user