From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Steven Tamm Newsgroups: gmane.emacs.devel Subject: mac/make-package: behavior change Date: Sun, 29 Dec 2002 10:56:57 -0800 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <4E1EFDD1-1B5F-11D7-80E9-00039390AB82@mac.com> References: <3159621.1041032427539.JavaMail.steventamm@mac.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v551) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1041188236 2256 80.91.224.249 (29 Dec 2002 18:57:16 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 29 Dec 2002 18:57:16 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Sicc-0000a6-00 for ; Sun, 29 Dec 2002 19:57:14 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18Sidq-000372-00 for ; Sun, 29 Dec 2002 19:58:30 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18SidB-0001Y0-04 for emacs-devel@quimby.gnus.org; Sun, 29 Dec 2002 13:57:49 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18Sicm-0001BH-00 for emacs-devel@gnu.org; Sun, 29 Dec 2002 13:57:24 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18Sici-00012J-00 for emacs-devel@gnu.org; Sun, 29 Dec 2002 13:57:21 -0500 Original-Received: from smtpout.mac.com ([17.250.248.87]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18SicP-0000Nx-00 for emacs-devel@gnu.org; Sun, 29 Dec 2002 13:57:02 -0500 Original-Received: from asmtp01.mac.com (asmtp01-qfe3 [10.13.10.65]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id gBTIux1q002032 for ; Sun, 29 Dec 2002 10:57:00 -0800 (PST) Original-Received: from mac.com ([12.236.43.16]) by asmtp01.mac.com (Netscape Messaging Server 4.15) with ESMTP id H7W9YZ00.6JG for ; Sun, 29 Dec 2002 10:56:59 -0800 Original-To: emacs-devel@gnu.org In-Reply-To: <3159621.1041032427539.JavaMail.steventamm@mac.com> X-Mailer: Apple Mail (2.551) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:10366 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10366 I just changed the behavior of make-package to by default perform the build in a temporary directory instead of in the source. For the old behavior, add the option "--build-in-place". A couple people had asked for it and since I regularly build both the X and the Carbon versions, I didn't want the source tree to be littered with .o files. I also made changes to src/Makefile to correctly create the Emacs.app if the build is done in a separate directory. Here are the new options: --build-in-place Build the application in the source directory instead of a temporary directory. --build-dir=DIR Build the application in the specified directory instead of a temporary directory. Mutually exclusive with --build-in-place. -Steven