Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/x11/bin/xdm Repeat after me:



details:   https://anonhg.NetBSD.org/src/rev/d32cbcce1869
branches:  trunk
changeset: 572503:d32cbcce1869
user:      lukem <lukem%NetBSD.org@localhost>
date:      Thu Jan 06 00:45:42 2005 +0000

description:
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")

diffstat:

 x11/bin/xdm/Makefile.xdm |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 87a3392eae17 -r d32cbcce1869 x11/bin/xdm/Makefile.xdm
--- a/x11/bin/xdm/Makefile.xdm  Thu Jan 06 00:42:58 2005 +0000
+++ b/x11/bin/xdm/Makefile.xdm  Thu Jan 06 00:45:42 2005 +0000
@@ -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 @@
                -I${X11SRCDIR.xc}/programs/xdm \
                ${X11FLAGS.VERSION}
 
-.if (${USE_PAM} == YES)
+.if (${USE_PAM} != "no")
 CPPFLAGS+=     -DUSE_PAM
 LDADD+=                -lpam
 .endif



Home | Main Index | Thread Index | Old Index