summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_add
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2014-09-19 16:05:14 +0000
committerMarc Espie <espie@cvs.openbsd.org>2014-09-19 16:05:14 +0000
commit16e3a13e5bf2b98138eb7243b8cc9f88ceb2283c (patch)
tree7a25de005768bf7ac6cbd0f9e42c420bcf050b0e /usr.sbin/pkg_add
parent31cd09c1f81b9e85d89d8d5379330d503049a4f5 (diff)
.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.
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r--usr.sbin/pkg_add/OpenBSD/PkgCreate.pm4
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;