pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/tools Check for PKG_DEVELOPER in the same way as we...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9288b65d6bd1
branches:  trunk
changeset: 500043:9288b65d6bd1
user:      jmmv <jmmv%pkgsrc.org@localhost>
date:      Sat Oct 01 14:30:15 2005 +0000

description:
Check for PKG_DEVELOPER in the same way as we do in other places.
Should fix problems if the variable is undefined.

diffstat:

 mk/tools/pkg-config.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r c8f33080e5d4 -r 9288b65d6bd1 mk/tools/pkg-config.mk
--- a/mk/tools/pkg-config.mk    Sat Oct 01 13:56:43 2005 +0000
+++ b/mk/tools/pkg-config.mk    Sat Oct 01 14:30:15 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: pkg-config.mk,v 1.3 2005/10/01 12:55:20 jmmv Exp $
+# $NetBSD: pkg-config.mk,v 1.4 2005/10/01 14:30:15 jmmv Exp $
 #
 # Copyright (c) 2005 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -52,7 +52,7 @@
 MAKE_ENV+=     PKG_CONFIG_LIBDIR=${_PKG_CONFIG_LIBDIR:Q}
 MAKE_ENV+=     PKG_CONFIG_LOG=${_PKG_CONFIG_LOG}
 
-.if !empty(PKG_DEVELOPER:M[Yy][Ee][Ss])
+.if defined(PKG_DEVELOPER)
 post-build: pkgconfig-post-build
 
 pkgconfig-post-build:



Home | Main Index | Thread Index | Old Index