From 0f4ca6a06182e6770decddf7d41a787f7c51cdad Mon Sep 17 00:00:00 2001 From: lukem Date: Sun, 28 Nov 2004 01:10:00 +0000 Subject: [PATCH] Use "${CPP} -P ${CPPFLAGS}" instead of "cpp -P". --- usr.sbin/amd/doc/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/amd/doc/Makefile b/usr.sbin/amd/doc/Makefile index 27beebb6cebf..1b122dfaafca 100644 --- a/usr.sbin/amd/doc/Makefile +++ b/usr.sbin/amd/doc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2004/11/27 01:39:23 christos Exp $ +# $NetBSD: Makefile,v 1.10 2004/11/28 01:10:00 lukem Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -16,9 +16,9 @@ version.texi: echo @set UPDATED $$(date +"%d %B %Y") > ${.TARGET} echo @set UPDATED-MONTH $$(date +"%B %Y") >> ${.TARGET} echo @set EDITION $$( (cat ${.CURDIR}/../include/config.h && \ - echo VERSION) | cpp -P | tr -d \") >> ${.TARGET} + echo VERSION) | ${CPP} -P ${CPPFLAGS} | tr -d \") >> ${.TARGET} echo @set VERSION $$( (cat ${.CURDIR}/../include/config.h && \ - echo VERSION) | cpp -P | tr -d \") >> ${.TARGET} + echo VERSION) | ${CPP} -P ${CPPFLAGS} | tr -d \") >> ${.TARGET} .include