summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2005-10-10 20:13:45 +0000
committertv <tv@pkgsrc.org>2005-10-10 20:13:45 +0000
commitdb1dd6cc4a3a73478127fd341cf2199a9eb5c1ec (patch)
tree70a13665317077dc185367f4f2d018a873d9447f /textproc
parentffa92a741628a96d62c3eae935df3f36c5953e40 (diff)
downloadpkgsrc-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')
-rw-r--r--textproc/source-highlight/Makefile4
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