diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-12-02 18:58:47 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-12-02 18:58:47 +0000 |
commit | 7dca3c983e2fdf6a7926086522bf397531f6a2f6 (patch) | |
tree | 6f7f478436db6c7a0a6c6c9565656a9c21d941d4 | |
parent | c1aca099a78bb6251f8b356beb4529e8177a0d99 (diff) |
typo in error message
-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 42a62d3e437..23a990dbabb 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.11 2006/12/02 18:28:22 espie Exp $ +# $OpenBSD: pkg-config,v 1.12 2006/12/02 18:58:46 espie Exp $ #$CSK: pkgconfig.pl,v 1.39 2006/11/27 16:26:20 ckuethe Exp $ # Copyright (c) 2006 Chris Kuethe <ckuethe@openbsd.org> @@ -202,7 +202,7 @@ sub get_config if (!$@) { return $cfg; } else { - print STDERR $@, "\n" if $@; + print STDERR $@, "\n" if $D; } return undef; } |