Date: Thu, 24 Jan 2002 11:08:48 +0200 From: Ruslan Ermilov <ru@FreeBSD.org> To: Joerg Wunsch <j@uriah.heep.sax.de>, "Kenneth D. Merry" <ken@kdm.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/camcontrol Makefile camcontrol.c Message-ID: <20020124110848.B14804@sunbay.com> In-Reply-To: <20020118204916.B42854@uriah.heep.sax.de> References: <200201172026.g0HKQES73581@freefall.freebsd.org> <20020117213458.A38235@freebie.xs4all.nl> <20020117214621.A19869@uriah.heep.sax.de> <20020117140357.A27220@panzer.kdm.org> <20020118113059.E1997@sunbay.com> <20020118111207.E33637@panzer.kdm.org> <20020118204916.B42854@uriah.heep.sax.de>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, Jan 18, 2002 at 08:49:16PM +0100, Joerg Wunsch wrote: > As Kenneth D. Merry wrote: > > > On Fri, Jan 18, 2002 at 11:30:59 +0200, Ruslan Ermilov wrote: > > > Hi! > > > > > > While we are at it, can you please commit this patch? > > > It fixes style bugs in Makefile, and removes bogus -I. > > > > Once upon a time, IIRC, the SDIR thing wasn't bogus. > > > > What has changed? > > Maybe /usr/include/cam didn't exist by that time? > So Kenneth, I'll commit this patch then, yes? Index: Makefile =================================================================== RCS file: /home/ncvs/src/sbin/camcontrol/Makefile,v retrieving revision 1.10 diff -u -p -r1.10 Makefile --- Makefile 2002/01/18 22:17:35 1.10 +++ Makefile 2002/01/24 09:10:30 @@ -1,20 +1,17 @@ # $FreeBSD: src/sbin/camcontrol/Makefile,v 1.10 2002/01/18 22:17:35 joerg Exp $ -MAINTAINER=ken@FreeBSD.ORG -PROG= camcontrol -SRCS= camcontrol.c util.c +MAINTAINER= ken@FreeBSD.org + +PROG= camcontrol +SRCS= camcontrol.c util.c .if !defined(RELEASE_CRUNCH) SRCS+= modeedit.c -.endif -MAN= camcontrol.8 -SDIR= ${.CURDIR}/../../sys - -CFLAGS+= -I${SDIR} -.if defined(RELEASE_CRUNCH) +.else CFLAGS+= -DMINIMALISTIC .endif WARNS= 0 -DPADD= ${LIBCAM} ${LIBSBUF} -LDADD+= -lcam -lsbuf +DPADD= ${LIBCAM} ${LIBSBUF} +LDADD= -lcam -lsbuf +MAN= camcontrol.8 .include <bsd.prog.mk> Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020124110848.B14804>