Repeat after me:

1. test before commit
	2. src/ != pkgsrc/

We test MK* and USE_* variables  against "no", not YES.  E.g,
	.if (${USE_PAM} != "no")
This commit is contained in:
lukem 2005-01-06 00:45:42 +00:00
parent a207248574
commit 3232b96e25
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.xdm,v 1.8 2005/01/05 20:19:52 manu Exp $
# $NetBSD: Makefile.xdm,v 1.9 2005/01/06 00:45:42 lukem Exp $
XDMVARDIR= /var/db/xdm
XDMDIR= ${X11ETCDIR}/xdm
@ -15,7 +15,7 @@ CPPFLAGS+= -DBINDIR=\"${X11BINDIR}\" -DXDMDIR=\"${XDMDIR}\" \
-I${X11SRCDIR.xc}/programs/xdm \
${X11FLAGS.VERSION}
.if (${USE_PAM} == YES)
.if (${USE_PAM} != "no")
CPPFLAGS+= -DUSE_PAM
LDADD+= -lpam
.endif