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 D80FF431FBC for ; Tue, 17 Nov 2009 14:18:52 -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 AsNMzDlVNaaJ for ; Tue, 17 Nov 2009 14:18:52 -0800 (PST) Received: from mout.perfora.net (mout.perfora.net [74.208.4.194]) by olra.theworths.org (Postfix) with ESMTP id 7BAF2431FAE for ; Tue, 17 Nov 2009 14:18:52 -0800 (PST) Received-SPF: pass (mxus1: domain of iptel.org designates 213.192.59.67 as permitted sender) client-ip=213.192.59.67; envelope-from=jan@iptel.org; helo=mail.iptel.org; Received: from mail.iptel.org ([213.192.59.67]) by mx.perfora.net (node=mxus1) with ESMTP (Nemesis) id 0Lsjs9-1OCDpK2DRx-012Hui for notmuch@notmuchmail.org; Tue, 17 Nov 2009 17:18:51 -0500 Received: by mail.iptel.org (Postfix, from userid 103) id 08FDF3707CE; Tue, 17 Nov 2009 23:18:49 +0100 (CET) Received: from x61s.janakj (r2c34.net.upc.cz [62.245.66.34]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail.iptel.org (Postfix) with ESMTPSA id B0B2C370753 for ; Tue, 17 Nov 2009 23:18:48 +0100 (CET) Received: by x61s.janakj (Postfix, from userid 1000) id 8A1C5440655; Tue, 17 Nov 2009 23:18:47 +0100 (CET) From: Jan Janak To: notmuch@notmuchmail.org Date: Tue, 17 Nov 2009 23:18:47 +0100 Message-Id: <1258496327-12086-1-git-send-email-jan@ryngle.com> X-Mailer: git-send-email 1.6.3.3 Subject: [notmuch] [PATCH] Older versions of install do not support -C. 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: Tue, 17 Nov 2009 22:18:53 -0000 Do not use -C cmdline option of install, older versions, commonly found in distributions like Debian, do not seem to support it. Running make install on such systems (tested on Debian Lenny) fails. Signed-off-by: Jan Janak --- Makefile.local | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.local b/Makefile.local index f824bed..f51f1d1 100644 --- a/Makefile.local +++ b/Makefile.local @@ -27,11 +27,11 @@ install: all notmuch.1.gz for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 \ $(DESTDIR)/etc/bash_completion.d/ ; \ do \ - install -C -d $$d ; \ + install -d $$d ; \ done ; - install -C notmuch $(DESTDIR)$(prefix)/bin/ - install -C -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/ - install -C notmuch-completion.bash \ + install notmuch $(DESTDIR)$(prefix)/bin/ + install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/ + install notmuch-completion.bash \ $(DESTDIR)/etc/bash_completion.d/notmuch SRCS := $(SRCS) $(notmuch_client_srcs) -- 1.6.3.3