From ab09e2a45ef8b9ef73859d14a1c607384d9997a7 Mon Sep 17 00:00:00 2001 From: cjs Date: Fri, 30 May 1997 15:11:03 +0000 Subject: [PATCH] Fix quoting yet again; reformat. --- share/mk/bsd.own.mk | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index e078b0c22598..864b3c5be338 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.47 1997/05/30 05:50:16 cjs Exp $ +# $NetBSD: bsd.own.mk,v 1.48 1997/05/30 15:11:03 cjs Exp $ # This file may be included multiple times without harm. @@ -79,7 +79,13 @@ 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}