From 4b25157323bdca66205efcdb9efb76c8d0f2f83c Mon Sep 17 00:00:00 2001 From: kirby Date: Sat, 18 Jun 2022 19:32:19 +0000 Subject: [PATCH] Stop adding RCS ID tag on the top of Makefile. looks right to afresh@ --- infrastructure/lib/OpenBSD/PortGen/Port.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/infrastructure/lib/OpenBSD/PortGen/Port.pm b/infrastructure/lib/OpenBSD/PortGen/Port.pm index 1c33c8f842c..675fb658ad7 100644 --- a/infrastructure/lib/OpenBSD/PortGen/Port.pm +++ b/infrastructure/lib/OpenBSD/PortGen/Port.pm @@ -1,4 +1,4 @@ -# $OpenBSD: Port.pm,v 1.24 2022/01/05 21:23:18 sdk Exp $ +# $OpenBSD: Port.pm,v 1.25 2022/06/18 19:32:19 kirby Exp $ # # Copyright (c) 2015 Giannis Tsaraias # Copyright (c) 2019 Andrew Hewus Fresh @@ -355,12 +355,10 @@ sub write_makefile grep { $_->{name} ne 'EXTRACT_SUFX' } grep { ref } @template; } else { - my $tag = 'OpenBSD'; my $template = ports_dir() . '/infrastructure/templates/Makefile.template'; @template = ( - "# \$$tag\$", grep { $_ !~ /^\#/x } $self->parse_makefile($template) ); }