Forgot to quote a variable.

This commit is contained in:
cjs 1997-05-29 19:35:23 +00:00
parent 3906c8cde5
commit 2707a099a6
1 changed files with 2 additions and 2 deletions

View File

@ -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. # 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 # a bit of a hack; we should possibly generalise object directories so that
# they can be used outside the BSD tree. # they can be used outside the BSD tree.
.if defined(BSDSRCDIR) .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" .if ${insrcdir} == "no"
.undef OBJDIR .undef OBJDIR
.endif # ${insrcdir} .endif # ${insrcdir}