From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: building macosx Date: Wed, 18 Sep 2002 11:48:06 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1032364259 9710 127.0.0.1 (18 Sep 2002 15:50:59 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 18 Sep 2002 15:50:59 +0000 (UTC) Cc: immanuell@enfocus.be, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17rh6Q-0002WT-00 for ; Wed, 18 Sep 2002 17:50:58 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17rhkn-0006pi-00 for ; Wed, 18 Sep 2002 18:32:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17rh6l-0001N1-00; Wed, 18 Sep 2002 11:51:19 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17rh3g-000141-00 for emacs-devel@gnu.org; Wed, 18 Sep 2002 11:48:08 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17rh3e-00013f-00 for emacs-devel@gnu.org; Wed, 18 Sep 2002 11:48:07 -0400 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17rh3e-00013Z-00 for emacs-devel@gnu.org; Wed, 18 Sep 2002 11:48:06 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 17rh3e-0000Ys-00; Wed, 18 Sep 2002 11:48:06 -0400 Original-To: akochoi@shaw.ca In-reply-to: (message from Andrew Choi on Tue, 17 Sep 2002 09:30:34 -0600) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:7990 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:7990 > building emacs on macos 10.1 gives the following error: > > rm -f /Users/immanuel/workspace/UnixSource/Emacs/emacs-cvs/emacs/lisp/*.elc /Users/immanuel/workspace/UnixSource/Emacs/emacs-cvs/emacs/lisp/*/*.elc > /bin/sh: /usr/local/bin/rm: Argument list too long > make[1]: [bootstrap-clean] Error 126 (ignored) Maybe we can do something to shorten these names by changing the makefile so that it uses relative names instead of making them absolute. Does this fix the whole problem? *** Makefile.in.~1.34.~ Thu Mar 28 12:58:44 2002 --- Makefile.in Tue Sep 17 17:59:39 2002 *************** *** 278,284 **** bootstrap-clean: if test -x $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi ! -rm -f $(lisp)/*.elc $(lisp)/*/*.elc # Generate/update files for the bootstrap process. --- 278,284 ---- bootstrap-clean: if test -x $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi ! cd $(lisp); rm -f *.elc */*.elc # Generate/update files for the bootstrap process.