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 3ED5A431FBF for ; Mon, 23 Nov 2009 07:31:49 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org 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 yBmrpjFX8fs9 for ; Mon, 23 Nov 2009 07:31:48 -0800 (PST) Received: from mail-pw0-f51.google.com (mail-pw0-f51.google.com [209.85.160.51]) by olra.theworths.org (Postfix) with ESMTP id 9AA41431FAE for ; Mon, 23 Nov 2009 07:31:48 -0800 (PST) Received: by pwj10 with SMTP id 10so3471636pwj.30 for ; Mon, 23 Nov 2009 07:31:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=5Q9e9jwxcevwb7HuYNdXoh7DCNgcnOfx8+cO7+3ChOQ=; b=KWGZ+mJox7RLVvSJ7ygjA/GWYqjYCAv2C9r37rdmIL4JV+7O+kHfC43T7Tvd76n2rh mphPDuzkikujZJ4xUl+6cguAsYvAhf9VUKZRjMZ3oyLMeGm8b/aW3zK/Xb/7MZx/+rsn SGNhDiOrrN017ETd9mPDrUW2IuivCcYBH7/Yk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=HzQ2l7IYyMRiDsqf3c1cv0c3ygvRUCdlS1wkb+rxNycm5mEXrQYjRQXm7wOk32DyJs Q4t36QvurweeHzRI6zya/o9/ZjIridw2YRaHTqPIefb6vDT4vZcKmhNYq0Epg+mkvv2K pfulM/bOfr63wEN+wEmod7ZjViF2ELLHFqUAM= MIME-Version: 1.0 Received: by 10.114.163.13 with SMTP id l13mr9241795wae.139.1258990307431; Mon, 23 Nov 2009 07:31:47 -0800 (PST) Date: Mon, 23 Nov 2009 10:31:47 -0500 Message-ID: <46263c600911230731i529f2db5rec11bed02f84ef13@mail.gmail.com> From: Brett Viren To: notmuch@notmuchmail.org Content-Type: text/plain; charset=ISO-8859-1 Subject: [notmuch] [patch] Trivial fix for non-root install X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 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: Mon, 23 Nov 2009 15:31:49 -0000 Installing as a normal user fails because the bash completion config files try to install into /etc. This trivial patch fixes this. diff --git a/Makefile.config b/Makefile.config index ddc7436..c04d57a 100644 --- a/Makefile.config +++ b/Makefile.config @@ -1,3 +1,2 @@ -prefix = /usr/local -bash_completion_dir = /etc/bash_completion.d +bash_completion_dir = $(prefix)/etc/bash_completion.d CFLAGS += -DHAVE_VALGRIND -Brett.