From 2707a099a679dc35ce3d0bc341bd9e456d15a098 Mon Sep 17 00:00:00 2001 From: cjs Date: Thu, 29 May 1997 19:35:23 +0000 Subject: [PATCH] Forgot to quote a variable. --- share/mk/bsd.own.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 31edb1216536..6710a8cf152e 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.44 1997/05/29 19:06:26 cjs Exp $ +# $NetBSD: bsd.own.mk,v 1.45 1997/05/29 19:35:23 cjs Exp $ # This file may be included multiple times without harm. @@ -79,7 +79,7 @@ BUILDDIR= ${DESTDIR} # a bit of a hack; we should possibly generalise object directories so that # they can be used outside the BSD tree. .if defined(BSDSRCDIR) -insrcdir != x=${.CURDIR}; if [ $${x\#${BSDSRCDIR}} = $$x ]; then echo no; else echo yes; fi +insrcdir != x=${.CURDIR}; if [ "$${x\#${BSDSRCDIR}}" = $$x ]; then echo no; else echo yes; fi .if ${insrcdir} == "no" .undef OBJDIR .endif # ${insrcdir}