aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog9
-rw-r--r--gold/Makefile.am19
-rw-r--r--gold/Makefile.in18
-rw-r--r--gold/NEWS10
-rw-r--r--gold/README7
-rw-r--r--gold/configure.ac17
-rw-r--r--gold/ftruncate.c19
7 files changed, 97 insertions, 2 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index b5d2706..b97d8a2 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,12 @@
+2012-12-17 Nick Clifton <nickc@redhat.com>
+
+ * Makefile.am: Add copyright notice.
+ * NEWS: Likewise.
+ * README: Likewise.
+ * configure.ac: Likewise.
+ * ftruncate.c: Likewise.
+ * Makefile.in: Regenerate.
+
2012-12-14 Cary Coutant <ccoutant@google.com>
* testsuite/Makefile.am (exception_separate_shared_12_test): Add
diff --git a/gold/Makefile.am b/gold/Makefile.am
index f82d4e9..df8dcb5 100644
--- a/gold/Makefile.am
+++ b/gold/Makefile.am
@@ -1,4 +1,21 @@
-# Process this file with automake to generate Makefile.in
+## Process this file with automake to generate Makefile.in
+#
+# Copyright 2012 Free Software Foundation
+#
+# This file 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 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; see the file COPYING3. If not see
+# <http://www.gnu.org/licenses/>.
+#
AUTOMAKE_OPTIONS = foreign
diff --git a/gold/Makefile.in b/gold/Makefile.in
index 8da48cd..216532a 100644
--- a/gold/Makefile.in
+++ b/gold/Makefile.in
@@ -15,7 +15,23 @@
@SET_MAKE@
-# Process this file with automake to generate Makefile.in
+#
+# Copyright 2012 Free Software Foundation
+#
+# This file 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 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; see the file COPYING3. If not see
+# <http://www.gnu.org/licenses/>.
+#
VPATH = @srcdir@
diff --git a/gold/NEWS b/gold/NEWS
index a1133c2..d73ceeb 100644
--- a/gold/NEWS
+++ b/gold/NEWS
@@ -1 +1,11 @@
* gold added to GNU binutils.
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
+
+Local variables:
+fill-column: 79
+End:
diff --git a/gold/README b/gold/README
index bc8496a..66668a9 100644
--- a/gold/README
+++ b/gold/README
@@ -60,3 +60,10 @@ The linker script parser uses features which are only in newer
versions of bison. bison 2.3 is known to work. bison 1.26 is known
to fail. If you are building gold from an official binutils release,
the bison output should already be included.
+
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
diff --git a/gold/configure.ac b/gold/configure.ac
index 727078d..9d23835 100644
--- a/gold/configure.ac
+++ b/gold/configure.ac
@@ -1,4 +1,21 @@
dnl Process this file with autoconf to produce a configure script.
+dnl
+dnl Copyright 2012 Free Software Foundation
+dnl
+dnl This file is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 3 of the License, or
+dnl (at your option) any later version.
+dnl
+dnl This program is distributed in the hope that it will be useful,
+dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+dnl GNU General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with this program; see the file COPYING3. If not see
+dnl <http://www.gnu.org/licenses/>.
+dnl
AC_PREREQ(2.59)
diff --git a/gold/ftruncate.c b/gold/ftruncate.c
index fc0bbc8..102fcd1 100644
--- a/gold/ftruncate.c
+++ b/gold/ftruncate.c
@@ -1,6 +1,25 @@
/* ftruncate emulations that work on some System V's.
This file is in the public domain. */
+/* Copyright 2012 Free Software Foundation, Inc.
+
+ This file is part of gold.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ 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. */
+
#include <config.h>
/* Specification. */