From 25c065445b9f74efdb9022e74a90f2b884c7d2dc Mon Sep 17 00:00:00 2001 From: etheisen Date: Tue, 6 Feb 1996 03:38:29 +0000 Subject: [PATCH] Pass CFLAGS into gnu build. --- gnu/usr.bin/cvs/Makefile.bsd-wrapper | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index 24833d47515..4db64b4c792 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,9 +1,12 @@ -# $Id: Makefile.bsd-wrapper,v 1.10 1996/02/02 00:11:23 niklas Exp $ +# $Id: Makefile.bsd-wrapper,v 1.11 1996/02/06 03:38:29 etheisen Exp $ MAN= man/cvs.1 man/cvs.5 man/cvsbug.8 man/cvsinit.8 man/mkmodules.1 +GNUCFLAGS= CFLAGS="${CFLAGS}" +CLEANFILES= man/cvs.cat1 man/cvs.cat5 man/cvsbug.cat8 \ + man/cvsinit.cat8 man/mkmodules.cat1 all: config.status - ${MAKE} LDFLAGS=${LDSTATIC} + ${MAKE} ${GNUCFLAGS} LDFLAGS=${LDSTATIC} .FORCE: .IGNORE @@ -15,12 +18,13 @@ config.status: sh ${.CURDIR}/configure --prefix=/usr --with-krb4=/usr install: maninstall - ${MAKE} prefix=${DESTDIR}/usr infodir=${DESTDIR}/usr/share/info \ + ${MAKE} ${GNUCFLAGS} prefix=${DESTDIR}/usr \ + infodir=${DESTDIR}/usr/share/info \ bindir=${DESTDIR}/usr/bin INSTALL_MAN= install clean cleandir: + rm -f ${CLEANFILES} -@if [ -e Makefile ]; then ${MAKE} distclean; fi - rm -f man/cvs.cat1 man/cvs.cat5 man/cvsbug.cat8 man/cvsinit.cat8 man/mkmodules.cat1 depend: # Nothing here so far... -- 2.20.1