emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: OS X (configure --with-ns) typing unresponsive with Org and Viper


From: Noam Postavsky
Subject: Re: OS X (configure --with-ns) typing unresponsive with Org and Viper
Date: Sat, 14 May 2016 09:59:23 -0400

On Sat, May 14, 2016 at 7:42 AM, Michael Brand
<address@hidden> wrote:
> On Sat, May 14, 2016 at 1:31 PM, Michael Brand
> <address@hidden> wrote:
>
>> So I thought to try building different commits but failed with current
>> master "git clone -b master git://git.sv.gnu.org/emacs.git && make
>> configure": In autogen.sh "git rev-parse --git-common-dir 2>/dev/null"
>> => "--git-common-dir" which looks wrong. My git version is 2.4.9
>> (Apple Git-60).
>
> Completing myself: Probably the "test -e .git" in autogen.ch was
> intended the other way around.

No, the intention is to find the "real" .git/ directory, in case of
building in a separate git worktree. It looks like --git-common-dir
was added only in git 2.5.0 and rev-parse just passes unrecognized
options through.

~/src/git$ git rev-parse --foo ; echo $?
--foo
0

Putting --no-flags will drop them instead, perhaps we can use that?

~/src/git$ git rev-parse --no-flags --foo --git-common-dir ; echo $?
.git
0



reply via email to

[Prev in Thread] Current Thread [Next in Thread]