diff options
author | tron <tron@pkgsrc.org> | 2002-01-05 22:46:18 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-01-05 22:46:18 +0000 |
commit | bc10b0147d3dbb829d8232e77aa9c79191c3bdfd (patch) | |
tree | ac4b0b99439527cc42c00950ae884125b7b25452 | |
parent | 14e9242870968019d1ac46a1175b064dfe537de5 (diff) | |
download | pkgsrc-bc10b0147d3dbb829d8232e77aa9c79191c3bdfd.tar.gz |
Ignore "/usr/bin/msgfmt" under Solaris because it's not the GNU version.
-rw-r--r-- | mk/bsd.pkg.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 8abe320888d..c1abbbdea1f 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.891 2002/01/05 18:40:32 tron Exp $ +# $NetBSD: bsd.pkg.mk,v 1.892 2002/01/05 22:46:18 tron Exp $ # # This file is in the public domain. # @@ -300,7 +300,8 @@ DEPENDS+= Xaw3d-1.5:../../x11/Xaw3d . endif .endif -.if defined(BUILD_USES_MSGFMT) && !exists(/usr/bin/msgfmt) +.if defined(BUILD_USES_MSGFMT) && \ + (!exists(/usr/bin/msgfmt) || ${OPSYS} == SunOS) BUILD_DEPENDS+= gettext>=0.10.35nb1:../../devel/gettext .endif |