diff options
author | 2011-06-16 08:33:54 +0000 | |
---|---|---|
committer | 2011-06-16 08:33:54 +0000 | |
commit | c7becbc2510ca64f8fa10926d045d1d20fb29232 (patch) | |
tree | 587458490307cf54083700c706779ae58bedec13 | |
parent | sync (diff) | |
download | wireguard-openbsd-c7becbc2510ca64f8fa10926d045d1d20fb29232.tar.xz wireguard-openbsd-c7becbc2510ca64f8fa10926d045d1d20fb29232.zip |
fix printrequiresprivate-mode name in a test
-rw-r--r-- | usr.bin/pkg-config/pkg-config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/pkg-config/pkg-config b/usr.bin/pkg-config/pkg-config index e144e741237..6d231aa3faf 100644 --- a/usr.bin/pkg-config/pkg-config +++ b/usr.bin/pkg-config/pkg-config @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $OpenBSD: pkg-config,v 1.64 2011/06/15 11:54:03 jasper Exp $ +# $OpenBSD: pkg-config,v 1.65 2011/06/16 08:33:54 jasper Exp $ # $CSK: pkgconfig.pl,v 1.39 2006/11/27 16:26:20 ckuethe Exp $ # Copyright (c) 2006 Chris Kuethe <ckuethe@openbsd.org> @@ -256,7 +256,7 @@ sub handle_config } }; - if (defined $mode{cflags} or $mode{static} or $mode{printreqprivate}) { + if (defined $mode{cflags} or $mode{static} or $mode{printrequiresprivate}) { &$get_props("Requires.private"); } &$get_props("Requires"); |