Don't use " inside an '.if exists()'

This commit is contained in:
veego 1997-10-24 12:14:57 +00:00
parent 8ba07ab0b3
commit aea22d6b9c
2 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile.inc,v 1.8 1997/10/24 07:52:03 lukem Exp $
# $NetBSD: Makefile.inc,v 1.9 1997/10/24 12:14:57 veego Exp $
WARNS= 0
CPPFLAGS+=-DTERMCAP -DSRCRT -DKLUDGELINEMODE -DUSE_TERMIO -DTN3270 -Dunix
CPPFLAGS+=-I${.CURDIR} -I.
KBD= unix.kbd
.if exists("${.CURDIR}/../../Makefile.inc")
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile.inc,v 1.1 1997/10/20 04:28:24 lukem Exp $
# $NetBSD: Makefile.inc,v 1.2 1997/10/24 12:15:01 veego Exp $
WARNS= 0
.if exists("${.CURDIR}/../../Makefile.inc")
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif