*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / copyright.sh
index 23f63363d204aca02d69e99261eef11e253d9ae5..13f860a2abd72ada3b1bdc9f3b936fbcd7412f0f 100644 (file)
@@ -1,13 +1,13 @@
 #!/bin/sh
 # Automatically update copyright for GDB, the GNU debugger.
 #
-# Copyright (C) 2007 Free Software Foundation, Inc.
+# Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 #
 # This file is part of GDB.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
 #
 # This program is distributed in the hope that it will be useful,
@@ -16,9 +16,7 @@
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 # Usage: cd src/gdb && sh ./copyright.sh
 # To use a different version of emacs, set the EMACS environment
@@ -46,7 +44,8 @@
 #  tex (%)
 #  *.defs as C
 #   man
-# So these need to be done by hand, as needed
+# So these need to be done either by hand, as needed, or by the copyright.py
+# script.
 byhand="
 *.s
 *.f
@@ -58,10 +57,15 @@ byhand="
 *.tex
 *.defs
 *.1
+*.ads
+*.adb
+*.gpr
+*.inc
 "
 
 # Files which should not be modified, either because they are
-# generated, non-FSF, or otherwise special (e.g. license text).
+# generated, non-FSF, or otherwise special (e.g. license text,
+# or test cases which must be sensitive to line numbering).
 prunes="
 COPYING
 COPYING.LIB
@@ -76,6 +80,8 @@ gdbtk
 gdb.gdbtk
 osf-share
 aclocal.m4
+step-line.inp
+step-line.c
 "
 
 ####
@@ -90,7 +96,7 @@ set -f
 
 version=`$EMACS --version | sed 's/GNU Emacs \([0-9]*\)\..*/\1/; 1q'`
 if test "$version" -lt 22; then
-  echo "error: $EMACS is too old; use at least an Emacs 22 snapshot." >&2
+  echo "error: $EMACS is too old; use at least an Emacs 22.0.XX snapshot." >&2
   exit 1
 fi
 
@@ -159,4 +165,6 @@ cat >> copytmp.el <<EOF
 (kill-emacs)
 EOF
 
-exec $EMACS --no-site-file -q -l ./copytmp.el
+$EMACS --no-site-file -q -l ./copytmp.el
+
+python $dir/copyright.py
This page took 0.024687 seconds and 4 git commands to generate.