From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id A1DAC6DE1216 for ; Sat, 28 Nov 2015 07:02:45 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: 0.714 X-Spam-Level: X-Spam-Status: No, score=0.714 tagged_above=-999 required=5 tests=[AWL=0.062, SPF_NEUTRAL=0.652] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Alc753xHfAnx for ; Sat, 28 Nov 2015 07:02:43 -0800 (PST) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by arlo.cworth.org (Postfix) with ESMTP id 8157B6DE0ACD for ; Sat, 28 Nov 2015 07:02:43 -0800 (PST) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id BAEBB1000CA; Sat, 28 Nov 2015 17:02:50 +0200 (EET) From: Tomi Ollila To: David Bremner , Andrew Burgess , notmuch@notmuchmail.org Subject: Re: [PATCH] configure: Use $prefix for emacs, even when pkg-config is available. In-Reply-To: <87egfa2rye.fsf@zancas.localnet> References: <1448472725-11684-1-git-send-email-andrew.burgess@embecosm.com> <87egfa2rye.fsf@zancas.localnet> User-Agent: Notmuch/0.21+32~g73439f8 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.20 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: Sat, 28 Nov 2015 15:02:45 -0000 On Sat, Nov 28 2015, David Bremner wrote: > Andrew Burgess writes: > >> Assumming that you have pkg-config installed, emacs installed, and the >> command 'pkg-config emacs --variable sitepkglispdir' returns a >> directory that only root can write to, then the make install above >> should fail. > > I agree that the current behaviour is probably wrong. I'm not sure if we > need more control here as Tomi suggests. My biggest concern is that > emacs.pc seems to be rather specific to fedora / redhat packaging, which > makes it hard for me to evaluate both the current handling and this > patch. Do any any Fedora users have opinions on just dropping the > handling of "pkg-config emacs"? Or am I missing other places that > pkg-config file is available? Now that I looked this a bit more I tend to agree with David: default PREFIX is /usr/local and $ pkg-config emacs --variable sitepkglispdir outputs /usr/share/emacs/site-lisp (in default case we should mangle /local/ there in between ... :/ ). package managers can add ./configure ---emacslispdir=`pkg-config emacs --variable sitepkglispdir` in their build scripts. > > d Tomi