pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/textproc/source-highlight In a == conditional involvin...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/380c9b8e1fad
branches:  trunk
changeset: 500607:380c9b8e1fad
user:      tv <tv%pkgsrc.org@localhost>
date:      Mon Oct 10 20:13:45 2005 +0000

description:
In a == conditional involving a variable, the LHS must not be enclosed in
double quotes (breaks on older NetBSD make and bootstrap/bmake).

diffstat:

 textproc/source-highlight/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 906b6bb5920a -r 380c9b8e1fad textproc/source-highlight/Makefile
--- a/textproc/source-highlight/Makefile        Mon Oct 10 20:10:37 2005 +0000
+++ b/textproc/source-highlight/Makefile        Mon Oct 10 20:13:45 2005 +0000
@@ -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 @@
 
 .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



Home | Main Index | Thread Index | Old Index