Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 3733D431FBC for ; Wed, 17 Feb 2010 06:04:40 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -1.367 X-Spam-Level: X-Spam-Status: No, score=-1.367 tagged_above=-999 required=5 tests=[AWL=-0.627, BAYES_20=-0.74] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id j5CVpgi8e7To for ; Wed, 17 Feb 2010 06:04:39 -0800 (PST) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.156]) by olra.theworths.org (Postfix) with ESMTP id 35FFA431FAE for ; Wed, 17 Feb 2010 06:04:39 -0800 (PST) Received: by fg-out-1718.google.com with SMTP id 16so216857fgg.2 for ; Wed, 17 Feb 2010 06:04:38 -0800 (PST) Received: by 10.87.5.15 with SMTP id h15mr14391134fgi.43.1266415478257; Wed, 17 Feb 2010 06:04:38 -0800 (PST) Received: from aw.hh.sledj.net (gmp-ea-fw-1b.sun.com [192.18.8.1]) by mx.google.com with ESMTPS id d6sm8877873fga.24.2010.02.17.06.04.37 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 17 Feb 2010 06:04:37 -0800 (PST) Received: by aw.hh.sledj.net (Postfix, from userid 1000) id 3DED73A099; Wed, 17 Feb 2010 14:04:20 +0000 (GMT) From: David Edmondson To: notmuch@notmuchmail.org Date: Wed, 17 Feb 2010 14:04:11 +0000 Message-Id: <1266415452-25108-1-git-send-email-dme@dme.org> X-Mailer: git-send-email 1.6.6.1 Subject: [notmuch] [PATCH 1/2] build: Ensure that '.' is in the emacs load-path when compiling files. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Feb 2010 14:04:40 -0000 --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 64b9d4a..9fcb2b9 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ quiet ?= $($1) $(call quiet,CC,$(CFLAGS)) -c $(FINAL_CFLAGS) $< -o $@ %.elc: %.el - $(call quiet,EMACS) -batch -f batch-byte-compile $< + $(call quiet,EMACS) -batch --directory . -f batch-byte-compile $< .deps/%.d: %.c $(all_deps) @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \ -- 1.6.6.1