From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Geralt Newsgroups: gmane.emacs.help Subject: Re: Emacs and parent directory Makefile Date: Mon, 12 Jul 2010 11:16:00 +0200 Message-ID: References: <20100710051336.GB9957@dementia.proulx.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1278927565 18532 80.91.229.12 (12 Jul 2010 09:39:25 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 12 Jul 2010 09:39:25 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jul 12 11:39:24 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OYFTu-000863-BS for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Jul 2010 11:39:22 +0200 Original-Received: from localhost ([127.0.0.1]:46052 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OYF9B-00072z-PE for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Jul 2010 05:17:58 -0400 Original-Received: from [140.186.70.92] (port=39611 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OYF8A-0006w6-SF for help-gnu-emacs@gnu.org; Mon, 12 Jul 2010 05:16:56 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OYF7K-0003I3-HQ for help-gnu-emacs@gnu.org; Mon, 12 Jul 2010 05:16:03 -0400 Original-Received: from mail-ww0-f49.google.com ([74.125.82.49]:45602) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OYF7K-0003Hp-Cq for help-gnu-emacs@gnu.org; Mon, 12 Jul 2010 05:16:02 -0400 Original-Received: by wwb39 with SMTP id 39so217910wwb.30 for ; Mon, 12 Jul 2010 02:16:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=q4uk7YHA1K/U8JnB+dhlnQy4MOlyXH//Txoi5pIKsbw=; b=dMbRp5qPPVRODiPGa8uot5Naz0GvFJLUGngPXGzdNmqO9BjNVdRxI8h7GbWJ4C1/H6 jJj4NkOHT50qWrAJXYrhJ+NZ96LPr6vqiJCSaQrScemC5I7IZeycyO5A9aicKfOHDXUV 6VQr4N3sk3KCMyXnkuAHn2rr9WBfhNL7g/vzo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=OP/HL/NsFMmD5bnnBLeGQ84j80JuiJYJ4SPIasae+8Uq/xj6MJlCGeJs9MxRSIUb7h zb+U/xkOBhyjXkrKtGSsA6wMflM730C1ujf1k93VBFoyJbLH7R47gtyoRoSyoiEA0upK ZNnnkfiKlaJWcAI8hfFhdGq1KYnCIL6uXlaNk= Original-Received: by 10.227.94.138 with SMTP id z10mr1821673wbm.166.1278926160365; Mon, 12 Jul 2010 02:16:00 -0700 (PDT) Original-Received: by 10.216.181.204 with HTTP; Mon, 12 Jul 2010 02:16:00 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:74173 Archived-At: Hi, are you all running make in silent mode? If I use make -C to build my projects (and I do that for all of them) compilation-mode has no problem to match the error reports to the originating files, because make prints messages like "make: Entering directory `/home/geralt/testproj'" whenever it changes it working directory (and with -C it's the first thing that make prints). However if you compile with the -s flag or the .SILENT target in my makefile I don't get these directory change notification messages and compilation-mode is no longer able to match error reports to the originating files. HTH, Geralt.