diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2021-04-06 13:32:08 +0200 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2021-04-06 16:27:10 +0200 |
commit | 5d33e045968104ac678d8b4b4ec1e8956bbf68e0 (patch) | |
tree | 457ff511c2ea543e81d90ab1bfa809a48c6d1094 /Tools/scripts/mark_safe.pl | |
parent | databases: fix category Makefile after 03cebea45b11 (diff) |
framework: Remove $FreeBSD$
Where appropriate fiddle with a few other things.
Diffstat (limited to 'Tools/scripts/mark_safe.pl')
-rwxr-xr-x | Tools/scripts/mark_safe.pl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Tools/scripts/mark_safe.pl b/Tools/scripts/mark_safe.pl index 313319d051ed..4d8fcd1eeb25 100755 --- a/Tools/scripts/mark_safe.pl +++ b/Tools/scripts/mark_safe.pl @@ -1,7 +1,5 @@ #!/usr/bin/env perl -# $FreeBSD$ -# # MAINTAINER= ports@FreeBSD.org # all committers may commit to this file without approval @@ -27,7 +25,6 @@ local $SIG{__DIE__} = \&Carp::confess; local $SIG{__WARN__} = \&Carp::cluck; ### version -our $VERSION = do { my @r = (q$FreeBSD$ =~ /\d+/g); sprintf "%d." . "%02d" x $#r, @r }; ### globals # cmdline options (standard) with defaults @@ -193,7 +190,7 @@ sub main { } if ($Version) { - print PROGNAME . " - v$VERSION\n\n"; + print PROGNAME . "\n\n"; return EXIT_SUCCESS; } |