diff options
author | Guillem Jover <guillem@debian.org> | 2012-01-31 12:58:03 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2012-02-01 06:30:30 +0100 |
commit | 33f45255ee45479a39c9e913223ddbb17d602aa9 (patch) | |
tree | 7692e5e3f14a349b87888bd1f7b0826a0377d71a /dpkg-split | |
parent | 9971d255b38c2dc0da40a3ec9c7cf4b1631366f8 (diff) | |
download | dpkg-33f45255ee45479a39c9e913223ddbb17d602aa9.tar.gz |
Move copyright information from --version output to file comment headers
Having to keep this information twice is error-prone as it easily gets
out of sync. Having to translate it is bothersome. It's not consistent
across dpkg tools, some do print it some don't. It's currently not
accurate, as the output would need to include the holders for all files
that end up being part of the binary. And listing it in the --versions
output is visually annoying and the wrong place.
Just keep this where it belongs, at the file comment headers, above the
license information.
Diffstat (limited to 'dpkg-split')
-rw-r--r-- | dpkg-split/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dpkg-split/main.c b/dpkg-split/main.c index 9b8b09a2a..91e67be29 100644 --- a/dpkg-split/main.c +++ b/dpkg-split/main.c @@ -2,7 +2,7 @@ * dpkg-split - splitting and joining of multipart *.deb archives * main.c - main program * - * Copyright © 1995 Ian Jackson <ian@chiark.greenend.org.uk> + * Copyright © 1994-1996 Ian Jackson <ian@chiark.greenend.org.uk> * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -46,7 +46,7 @@ printversion(const struct cmdinfo *cip, const char *value) { printf(_("Debian `%s' package split/join tool; version %s.\n"), SPLITTER, DPKG_VERSION_ARCH); - printf(_("Copyright (C) 1994-1996 Ian Jackson.\n")); + printf(_( "This is free software; see the GNU General Public License version 2 or\n" "later for copying conditions. There is NO warranty.\n")); |