diff options
author | 2011-06-06 17:10:43 +0000 | |
---|---|---|
committer | 2011-06-06 17:10:43 +0000 | |
commit | 10cbcac22c4544823f8d886148343753b5b5ded2 (patch) | |
tree | 426baedf494b0706dc688080abe30a066ba98136 | |
parent | Backout vmmap in order to repair virtual address selection algorithms (diff) | |
download | wireguard-openbsd-10cbcac22c4544823f8d886148343753b5b5ded2.tar.xz wireguard-openbsd-10cbcac22c4544823f8d886148343753b5b5ded2.zip |
rename PKG_CONFIG_LOGFILE to PKG_CONFIG_LOG to match fd.o
-rw-r--r-- | usr.bin/pkg-config/pkg-config | 6 | ||||
-rw-r--r-- | usr.bin/pkg-config/pkg-config.1 | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/pkg-config/pkg-config b/usr.bin/pkg-config/pkg-config index 2cebb997873..e63a1704052 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.49 2011/06/06 12:32:17 jasper Exp $ +# $OpenBSD: pkg-config,v 1.50 2011/06/06 17:10:43 jasper Exp $ # $CSK: pkgconfig.pl,v 1.39 2006/11/27 16:26:20 ckuethe Exp $ # Copyright (c) 2006 Chris Kuethe <ckuethe@openbsd.org> @@ -32,8 +32,8 @@ if (defined($ENV{PKG_CONFIG_LIBDIR}) && $ENV{PKG_CONFIG_LIBDIR}) { } my $logfile = ''; -if (defined($ENV{PKG_CONFIG_LOGFILE}) && $ENV{PKG_CONFIG_LOGFILE}) { - $logfile = $ENV{PKG_CONFIG_LOGFILE}; +if (defined($ENV{PKG_CONFIG_LOG}) && $ENV{PKG_CONFIG_LOG}) { + $logfile = $ENV{PKG_CONFIG_LOG}; } my $allow_uninstalled = diff --git a/usr.bin/pkg-config/pkg-config.1 b/usr.bin/pkg-config/pkg-config.1 index 8d7c3c6fee8..629c604d5cd 100644 --- a/usr.bin/pkg-config/pkg-config.1 +++ b/usr.bin/pkg-config/pkg-config.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pkg-config.1,v 1.21 2011/06/06 16:08:52 jasper Exp $ +.\" $OpenBSD: pkg-config.1,v 1.22 2011/06/06 17:10:43 jasper Exp $ .\" .\" Copyright (c) 2006 Chris Kuethe <ckuethe@openbsd.org> .\" @@ -146,7 +146,7 @@ package files. This will replace the default .Nm search directory. -.It Ev PKG_CONFIG_LOGFILE +.It Ev PKG_CONFIG_LOG This is used to specify a log file to which .Nm will write the passed arguments. |