diff options
author | tv <tv@pkgsrc.org> | 2005-10-10 20:13:45 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-10-10 20:13:45 +0000 |
commit | db1dd6cc4a3a73478127fd341cf2199a9eb5c1ec (patch) | |
tree | 70a13665317077dc185367f4f2d018a873d9447f /textproc/source-highlight | |
parent | ffa92a741628a96d62c3eae935df3f36c5953e40 (diff) | |
download | pkgsrc-db1dd6cc4a3a73478127fd341cf2199a9eb5c1ec.tar.gz |
In a == conditional involving a variable, the LHS must not be enclosed in
double quotes (breaks on older NetBSD make and bootstrap/bmake).
Diffstat (limited to 'textproc/source-highlight')
-rw-r--r-- | textproc/source-highlight/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/source-highlight/Makefile b/textproc/source-highlight/Makefile index 7f32f030495..ee07fc1ceaf 100644 --- a/textproc/source-highlight/Makefile +++ b/textproc/source-highlight/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/10/10 09:05:59 seb Exp $ +# $NetBSD: Makefile,v 1.18 2005/10/10 20:13:45 tv Exp $ # DISTNAME= source-highlight-2.1.2 @@ -23,7 +23,7 @@ BUILDLINK_TRANSFORM+= l:boost_regex:boost_regex-mt .include "../../mk/bsd.prefs.mk" -.if "${OPSYS}" == "NetBSD" +.if ${OPSYS} == "NetBSD" # We really need GNU sed not NetBSD's GNuish sed TOOLS_PLATFORM.gsed= # empty .endif |