From: espie Date: Fri, 5 Jan 2018 13:39:55 +0000 (+0000) Subject: @libset is going to be part of the dependency information. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a79d42333d73163cb5e813a513d061c2d0a6d0f8;p=openbsd @libset is going to be part of the dependency information. --- diff --git a/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm b/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm index 68ec4fb4f15..9dbd714511d 100644 --- a/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm +++ b/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm @@ -1,6 +1,6 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: PkgCreate.pm,v 1.129 2017/12/02 00:52:47 espie Exp $ +# $OpenBSD: PkgCreate.pm,v 1.130 2018/01/05 13:39:55 espie Exp $ # # Copyright (c) 2003-2014 Marc Espie # @@ -1091,7 +1091,7 @@ sub read_fragments } my $s = $subst->do($l); if ($fast) { - next unless $s =~ m/^\@(?:cwd|lib|depend|wantlib)\b/o || $s =~ m/lib.*\.a$/o; + next unless $s =~ m/^\@(?:cwd|lib|libset|depend|wantlib)\b/o || $s =~ m/lib.*\.a$/o; } # XXX some things, like @comment no checksum, don't produce an object my $o = &$cont($s);