Module Name: src
Committed By: mrg
Date: Sat Dec 5 03:28:08 UTC 2009
Modified Files:
src/external/mit/xorg/bin/xrdb: Makefile
Log Message:
- define CPP with a full path
- define CPP_ARGS to -traditional
part1 of xrdb fixes. thanks to Patrick Welche <[email protected]> for
figuring out what was going wrong.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/xrdb/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/mit/xorg/bin/xrdb/Makefile
diff -u src/external/mit/xorg/bin/xrdb/Makefile:1.1.1.1 src/external/mit/xorg/bin/xrdb/Makefile:1.2
--- src/external/mit/xorg/bin/xrdb/Makefile:1.1.1.1 Tue Jul 29 05:01:22 2008
+++ src/external/mit/xorg/bin/xrdb/Makefile Sat Dec 5 03:28:08 2009
@@ -1,10 +1,11 @@
-# $NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
+# $NetBSD: Makefile,v 1.2 2009/12/05 03:28:08 mrg Exp $
.include <bsd.own.mk>
PROG= xrdb
-CPPFLAGS+=-DCPP="\"cpp -traditional\"" -DHAS_MKSTEMP # XXX
+CPPFLAGS+=-DCPP="\"/usr/bin/cpp\"" -DHAS_MKSTEMP # XXX
+CPPFLAGS+=-DCPP_ARGS="\"-traditional\""
LDADD+= -lXmuu -lXt -lSM -lICE -lXext -lX11
DPADD+= ${LIBXMUU} ${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11}