diff options
author | 2017-11-07 16:21:59 +0000 | |
---|---|---|
committer | 2017-11-07 16:21:59 +0000 | |
commit | 4bc2ea20db4f2983b5b24abada9f46983db15bb4 (patch) | |
tree | 7e370105a9c7b0b5f0586f5ffbe414e047447b28 | |
parent | Add support for client-specific directories (named after the client address) (diff) | |
download | wireguard-openbsd-4bc2ea20db4f2983b5b24abada9f46983db15bb4.tar.xz wireguard-openbsd-4bc2ea20db4f2983b5b24abada9f46983db15bb4.zip |
Revert previous, it breaks ports/infrastructure/bin/resolve-lib (I think)
with at least python and ruby.
ok naddy@
-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 cdade63c9e3..524784a2255 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.127 2017/11/06 10:53:34 espie Exp $ +# $OpenBSD: PkgCreate.pm,v 1.128 2017/11/07 16:21:59 ajacoutot Exp $ # # Copyright (c) 2003-2014 Marc Espie <espie@openbsd.org> # @@ -122,7 +122,7 @@ sub handle_options } $state->{base} = $base; - $state->{silent} = defined $state->opt('n') && defined $state->opt('q') + $state->{silent} = defined $state->opt('n') && defined $state->opt('n') || defined $state->opt('S'); } |