From owner-freebsd-questions@FreeBSD.ORG Sun Jul 6 17:47:04 2003 Return-Path: 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 09ED237B401 for ; Sun, 6 Jul 2003 17:47:04 -0700 (PDT) Received: from datasphereweb.com (12-212-67-226.client.attbi.com [12.212.67.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C6B843FB1 for ; Sun, 6 Jul 2003 17:47:03 -0700 (PDT) (envelope-from ryallsd@datasphereweb.com) Received: (qmail 83549 invoked from network); 7 Jul 2003 00:47:02 -0000 Received: from evrtwa1-ar17-4-47-114-001.evrtwa1.dsl-verizon.net (HELO bartxp) (4.47.114.1) by truman.datasphereweb.com with SMTP; 7 Jul 2003 00:47:02 -0000 From: "Derrick Ryalls" Cc: Date: Sun, 6 Jul 2003 17:48:52 -0700 Message-ID: <00f001c34421$8c8f7fd0$0200a8c0@bartxp> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4024 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 In-Reply-To: <20030706220359.GA79044@c-5cc170d5.bredbandsbolaget.se> Subject: RE: How to make a port not build X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2003 00:47:04 -0000 > * Derrick Ryalls [2003-07-06 14.54 -0700]: > > Normally when building a port, I just type make install=20 > clean and let=20 > > it run. However, I need to modify a source file before the build=20 > > starts. Since many patches are included in the port, I am=20 > looking for=20 > > it to stop after everything is downloaded extracted and=20 > patched, just=20 > > before the build starts. Is there an elegant way of doing this=20 > > besides hitting Cntrl-C when it starts to build? >=20 > man ports(7), look for the word TARGETS. In this case 'make patch'=20 > (without the ''), instead of 'make install clean' would do what you=20 > want. >=20 > HTH, > --=20 > Martin Karlsson >=20 Thanks to all that responded. I knew there had to be a better way.