mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Support --with-pkgversion and --with-bugurl.
This commit is contained in:
@ -21,7 +21,8 @@ eval "exec @PERL@ -S $0 $@"
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
$VERSION = "@VERSION@";
|
||||
$PACKAGE = "libc";
|
||||
$PKGVERSION = "@PKGVERSION@";
|
||||
$REPORT_BUGS_TO = '@REPORT_BUGS_TO@';
|
||||
$progname = $0;
|
||||
|
||||
sub usage {
|
||||
@ -30,7 +31,7 @@ sub usage {
|
||||
print " --version print version number, then exit\n";
|
||||
print "\n";
|
||||
print "For bug reporting instructions, please see:\n";
|
||||
print "<http://www.gnu.org/software/libc/bugs.html>.\n";
|
||||
print "$REPORT_BUGS_TO.\n";
|
||||
exit 0;
|
||||
}
|
||||
|
||||
@ -43,7 +44,7 @@ arglist: while (@ARGV) {
|
||||
if ($ARGV[0] eq "--v" || $ARGV[0] eq "--ve" || $ARGV[0] eq "--ver" ||
|
||||
$ARGV[0] eq "--vers" || $ARGV[0] eq "--versi" ||
|
||||
$ARGV[0] eq "--versio" || $ARGV[0] eq "--version") {
|
||||
print "mtrace (GNU $PACKAGE) $VERSION\n";
|
||||
print "mtrace $PKGVERSION$VERSION\n";
|
||||
print "Copyright (C) 2012 Free Software Foundation, Inc.\n";
|
||||
print "This is free software; see the source for copying conditions. There is NO\n";
|
||||
print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
|
||||
|
Reference in New Issue
Block a user