From owner-freebsd-questions@FreeBSD.ORG Thu Jun 9 23:31:42 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 714B316A41C for ; Thu, 9 Jun 2005 23:31:42 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9BEC43D1F for ; Thu, 9 Jun 2005 23:31:40 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226]) by kane.otenet.gr (8.13.4/8.13.4/Debian-1) with SMTP id j59NVaHU023718; Fri, 10 Jun 2005 02:31:37 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) by orion.daedalusnetworks.priv (8.13.4/8.13.4) with ESMTP id j59NVaTV078050; Fri, 10 Jun 2005 02:31:36 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by orion.daedalusnetworks.priv (8.13.4/8.13.4/Submit) id j59NVabK078049; Fri, 10 Jun 2005 02:31:36 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 10 Jun 2005 02:31:36 +0300 From: Giorgos Keramidas To: Denny White Message-ID: <20050609233136.GA77987@orion.daedalusnetworks.priv> References: <20050607171901.A3942@dualman.cableone.net> <42A62287.3020705@ibsd.us> <20050607225028.H47050@dualman.cableone.net> <42A6DF8B.2090806@ibsd.us> <20050608212736.S95418@dualman.cableone.net> <20050609215257.GA59360@chaos.fxp.org> <20050609171716.J76049@dualman.cableone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050609171716.J76049@dualman.cableone.net> Cc: Bob Bomar , freebsd-questions@freebsd.org Subject: Re: cvs question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jun 2005 23:31:42 -0000 On 2005-06-09 18:13, Denny White wrote: > Hi Bob, > I have no idea how that happened. I think there was a glitch or > operator error in pine's gpg filters. Thanks for replying again. I > got to thinking, after reading some of the stuff in the cvs & stable > mailing list, that there could be just a messup in the make code. I > pulled the entire src tree along with docs, ports, & www again. This > time, it all makes fine. But, regardless of where I put the files as > in > > cd /usr > cvs -d /usr/local/ncvs co www > > and the subdir www is created & all the files for www are put there, > when I do a make install, it still insists on putting the files in > root's dir, & I just don't have enough room on that partition. I > even did a cd into /usr/www/en & did make install. It still > insisted on installing all the translations, not just english, & of > course, all of it into /root. Is there any particular reason why you are trying to build the web site? More importantly, why do you have to build the web site as root? The files are installed in ${DESTDIR}, which defaults to the ${HOME}/public_html/ directory of the user running the build. % orion:/d/www/share/mk$ grep DESTDIR * % web.site.mk:DESTDIR?= ${HOME}/public_html % web.site.mk:WEBCHECKINSTALLDIR?= ${DESTDIR}${WEBCHECKDIR} % web.site.mk:DOCINSTALLDIR= ${DESTDIR}${WEBBASE}/${WEBDIR} % web.site.mk:CGIINSTALLDIR= ${DESTDIR}${WEBBASE}/${CGIDIR} % web.site.mk:# NOTE: webcheck's output always stored to ${DESTDIR}/webcheck directory. % orion:/d/www/share/mk$ This is not a CVS problem ;-)