From owner-freebsd-questions@FreeBSD.ORG Thu Nov 3 19:36:24 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE603106566B for ; Thu, 3 Nov 2011 19:36:22 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 89FC78FC08 for ; Thu, 3 Nov 2011 19:36:22 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id pA3JaLll031660; Thu, 3 Nov 2011 13:36:21 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id pA3JaLUQ031657; Thu, 3 Nov 2011 13:36:21 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 3 Nov 2011 13:36:21 -0600 (MDT) From: Warren Block To: =?KOI8-R?B?4c7Uz84g68zF09M=?= In-Reply-To: <35891320340219@web76.yandex.ru> Message-ID: References: <35891320340219@web76.yandex.ru> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Thu, 03 Nov 2011 13:36:21 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: Is it safe to interrupt (Ctrl + C) while building a port or kernel? 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, 03 Nov 2011 19:36:24 -0000 On Thu, 3 Nov 2011, ????? ????? wrote: > Is it clear to interrupt the building process just by pressing Ctrl + ? > > If it's so, do I need to run "make clean" before I start "make" one more time? With ports, a "make clean" before rebuilding is a good idea. The build might not be able to continue cleanly, or might have to build differently, depending on what was changed. For /usr/src, I just remove /usr/obj/usr and build again, but also use devel/ccache so there's not much penalty for doing that.