diff options
author | 2014-09-19 16:05:13 +0000 | |
---|---|---|
committer | 2014-09-19 16:05:13 +0000 | |
commit | 28c7309c2634116fb82dca04dfe2befb02b19793 (patch) | |
tree | d6efcdbaefd67ba846afed6ab9a088c78dff86a8 | |
parent | Add CHACHA20 as a cipher symmetric encryption alias. (diff) | |
download | wireguard-openbsd-28c7309c2634116fb82dca04dfe2befb02b19793.tar.xz wireguard-openbsd-28c7309c2634116fb82dca04dfe2befb02b19793.zip |
.py files no longer need to be special, as the timestamps are stored in
the plist itself, so there's no longer any worry of the timestamp not
getting updated and python throwing a fit.
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PkgCreate.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm b/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm index 39c2058469e..2506bb1ea66 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.110 2014/09/16 10:01:51 espie Exp $ +# $OpenBSD: PkgCreate.pm,v 1.111 2014/09/19 16:05:13 espie Exp $ # # Copyright (c) 2003-2014 Marc Espie <espie@openbsd.org> # @@ -1406,7 +1406,7 @@ sub save_history # split list # - first, unknown stuff for my $h (@new) { - if ($known{$h} && $entries->{$h}[0]->{name} !~ /\.py$/) { + if ($known{$h}) { $found{$h} = $known{$h}; } else { print $f "$h\n" if defined $f; |