Quellcode durchsuchen

Add copyright and license statements to module files.

Frank Lichtenheld vor 19 Jahren
Ursprung
Commit
c3b177ac42
3 geänderte Dateien mit 48 neuen und 2 gelöschten Zeilen
  1. 17 1
      scripts/modules/Objdump.pm
  2. 15 1
      scripts/modules/Shlibs.pm
  3. 16 0
      scripts/modules/SymbolFile.pm

+ 17 - 1
scripts/modules/Objdump.pm

@@ -1,3 +1,19 @@
+# Copyright (C) 2007  Raphael Hertzog
+
+# 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
+# (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.
+
 package Dpkg::Shlibs::Objdump;
 
 require 'dpkg-gettext.pl';
@@ -70,7 +86,7 @@ sub parse {
 
 # Output format of objdump -w -T
 #
-# /lib/libc.so.6:     format de fichier elf32-i386
+# /lib/libc.so.6:     file format elf32-i386
 # 
 # DYNAMIC SYMBOL TABLE:
 # 00056ef0 g    DF .text  000000db  GLIBC_2.2   getwchar

+ 15 - 1
scripts/modules/Shlibs.pm

@@ -1,4 +1,18 @@
-#!/usr/bin/perl -w
+# Copyright (C) 2007  Raphael Hertzog
+
+# 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
+# (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.
 
 use strict;
 use warnings;

+ 16 - 0
scripts/modules/SymbolFile.pm

@@ -1,3 +1,19 @@
+# Copyright (C) 2007  Raphael Hertzog
+
+# 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
+# (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.
+
 package Dpkg::Shlibs::SymbolFile;
 
 require 'dpkg-gettext.pl';