From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Vinicius Jose Latorre Newsgroups: gmane.emacs.devel Subject: source newer than elc file & make error Date: Thu, 12 Jun 2003 21:41:27 -0300 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <3EE91DB7.6070801@ig.com.br> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1055464567 28183 80.91.224.249 (13 Jun 2003 00:36:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 13 Jun 2003 00:36:07 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Jun 13 02:36:06 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19QcY2-0007KR-00 for ; Fri, 13 Jun 2003 02:36:06 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19Qctj-0003sQ-00 for ; Fri, 13 Jun 2003 02:58:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19QcZA-0003oW-KM for emacs-devel@quimby.gnus.org; Thu, 12 Jun 2003 20:37:16 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19QcYr-0003m0-Sk for emacs-devel@gnu.org; Thu, 12 Jun 2003 20:36:57 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19QcYq-0003gO-91 for emacs-devel@gnu.org; Thu, 12 Jun 2003 20:36:57 -0400 Original-Received: from toole.uol.com.br ([200.221.29.26]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19QcYp-0003br-HT for emacs-devel@gnu.org; Thu, 12 Jun 2003 20:36:55 -0400 Original-Received: from ig.com.br ([200.98.85.152]) by toole.uol.com.br (8.9.1/8.9.1) with ESMTP id VAA15058 for ; Thu, 12 Jun 2003 21:36:45 -0300 (BRT) User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030529 X-Accept-Language: en-us, en Original-To: emacs-devel@gnu.org 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:15075 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15075 Hi folks, Emacs is complaining that some source files are newer than the byte-compiled file. The files are the following: bindings.el buff-menu.el comint.el cus-edit.el dabbrev.el desktop.el dired.el files.el frame.el gdb-ui.el info.el mwheel.el shell.el simple.el skeleton.el sort.el vc-hooks.el whitespace.el windmove.el So, I deleted the corresponding *.elc and tried to byte-compile them using make, but now it happens the following error: gcc -nostdlib `./prefix-args -Xlinker -R/usr/X11R6/lib -z nocombreloc` -L/usr/X11R6/lib -o temacs pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o charset.o coding.o category.o ccl.o cm.o term.o xfaces.o xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o emacs.o keyboard.o macros.o keymap.o sysdep.o buffer.o filelock.o insdel.o marker.o minibuf.o fileio.o dired.o filemode.o cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o alloc.o data.o doc.o editfns.o callint.o eval.o floatfns.o fns.o print.o lread.o abbrev.o syntax.o unexelf.o bytecode.o process.o callproc.o region-cache.o sound.o atimer.o doprnt.o strftime.o intervals.o textprop.o composite.o md5.o terminfo.o lastfile.o vm-limit.o widget.o mktime.o ../lwlib/liblw.a -L/usr/X11R6/lib -lXaw3d -lXmu -lXt -lSM -lICE -lXext -ltiff -ljpeg -lpng -lz -lm -lungif -lXpm -lX11 -lncurses -lm -lgcc -lc -lgcc /usr/lib/crtn.o make[1]: *** No rule to make target `/home/vinicius/work/emacs/src/../lisp/buff-menu.elc', needed by `../etc/DOC'. Stop. make[1]: Leaving directory `/home/vinicius/work/emacs/src' make: *** [src] Error 2 Vinicius