git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [commit 4ecbc178704] Incosistency?
@ 2009-07-14 21:41 Unknown
  2009-07-14 21:48 ` Jeff King
  2009-07-14 22:42 ` Thomas Adam
  0 siblings, 2 replies; 7+ messages in thread
From: Unknown @ 2009-07-14 21:41 UTC (permalink / raw)
  To: git

commit 4ecbc178704ca6c1027a38483e98f5fe493b1322
Author: Jeff King <peff@peff.net>
Date:   Thu Jul 9 02:37:35 2009 -0400

bla bla.. some strange SUDO fix (who the hell uses git that way?)
I dont like it.. git-add in libexecdir was good!

diff --git a/Makefile b/Makefile
index 78cc113..311ce7d 100644
--- a/Makefile
+++ b/Makefile
@@ -1641,15 +1641,15 @@ ifneq (,$X)
  endif
         bindir=$$(cd '$(DESTDIR_SQ)$(bindir_SQ)' && pwd) && \
         execdir=$$(cd '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' && pwd) && \
-       { $(RM) "$$execdir/git-add$X" && \
+       { $(RM) "$$execdir/git$X" && \
                 test -z "$(NO_CROSS_DIRECTORY_HARDLINKS)" && \
-               ln "$$bindir/git$X" "$$execdir/git-add$X" 2>/dev/null || \
-               cp "$$bindir/git$X" "$$execdir/git-add$X"; } && \
-       { for p in $(filter-out git-add$X,$(BUILT_INS)); do \
+               ln "$$bindir/git$X" "$$execdir/git$X" 2>/dev/null || \
+               cp "$$bindir/git$X" "$$execdir/git$X"; } && \
+       { for p in $(BUILT_INS); do \
                 $(RM) "$$execdir/$$p" && \
-               ln "$$execdir/git-add$X" "$$execdir/$$p" 2>/dev/null || \
-               ln -s "git-add$X" "$$execdir/$$p" 2>/dev/null || \
-               cp "$$execdir/git-add$X" "$$execdir/$$p" || exit; \
+               ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
+               ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
+               cp "$$execdir/git$X" "$$execdir/$$p" || exit; \
           done; } && \
         ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"

Isnt check_bindir is broken now?
git-add is no more..

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [commit 4ecbc178704] Incosistency?
  2009-07-14 21:41 [commit 4ecbc178704] Incosistency? Unknown
@ 2009-07-14 21:48 ` Jeff King
  2009-07-14 22:30   ` Johannes Schindelin
  2009-07-15  8:32   ` Unknown
  2009-07-14 22:42 ` Thomas Adam
  1 sibling, 2 replies; 7+ messages in thread
From: Jeff King @ 2009-07-14 21:48 UTC (permalink / raw)
  To: Unknown; +Cc: git

On Tue, Jul 14, 2009 at 11:41:40PM +0200, Unknown wrote:

> commit 4ecbc178704ca6c1027a38483e98f5fe493b1322
> Author: Jeff King <peff@peff.net>
> Date:   Thu Jul 9 02:37:35 2009 -0400
> 
> bla bla.. some strange SUDO fix (who the hell uses git that way?)
> I dont like it.. git-add in libexecdir was good!

Hmm. I think I wrote a better commit message than that...

> -       { for p in $(filter-out git-add$X,$(BUILT_INS)); do \
> +               ln "$$bindir/git$X" "$$execdir/git$X" 2>/dev/null || \
> +               cp "$$bindir/git$X" "$$execdir/git$X"; } && \
> +       { for p in $(BUILT_INS); do \
>                 $(RM) "$$execdir/$$p" && \
> -               ln "$$execdir/git-add$X" "$$execdir/$$p" 2>/dev/null || \
> -               ln -s "git-add$X" "$$execdir/$$p" 2>/dev/null || \
> -               cp "$$execdir/git-add$X" "$$execdir/$$p" || exit; \
> +               ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
> +               ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
> +               cp "$$execdir/git$X" "$$execdir/$$p" || exit; \
>           done; } && \
>         ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"
> 
> Isnt check_bindir is broken now?
> git-add is no more..

No. Two things you are missing:

  1. "git-add" still goes in exec-dir. It's just not the magic one we do
     separately (see how we no longer need to use filter-out?).

  2. check_bindir is actually about looking for dashed-form commands in
     the $bindir, which would indicate cruft from an older installed
     version of git. We can't use "git" for this, because that is the
     command that is _supposed_ to be in $bindir.

-Peff

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [commit 4ecbc178704] Incosistency?
  2009-07-14 21:48 ` Jeff King
@ 2009-07-14 22:30   ` Johannes Schindelin
  2009-07-15  8:32   ` Unknown
  1 sibling, 0 replies; 7+ messages in thread
From: Johannes Schindelin @ 2009-07-14 22:30 UTC (permalink / raw)
  To: Jeff King; +Cc: Unknown, git

Hi,

On Tue, 14 Jul 2009, Jeff King wrote:

> On Tue, Jul 14, 2009 at 11:41:40PM +0200, Unknown wrote:
> 
> > commit 4ecbc178704ca6c1027a38483e98f5fe493b1322
> > Author: Jeff King <peff@peff.net>
> > Date:   Thu Jul 9 02:37:35 2009 -0400
> > 
> > bla bla.. some strange SUDO fix (who the hell uses git that way?)
> > I dont like it.. git-add in libexecdir was good!
> 
> Hmm. I think I wrote a better commit message than that...

See?  No good deed goes unpunished.

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [commit 4ecbc178704] Incosistency?
  2009-07-14 21:41 [commit 4ecbc178704] Incosistency? Unknown
  2009-07-14 21:48 ` Jeff King
@ 2009-07-14 22:42 ` Thomas Adam
  1 sibling, 0 replies; 7+ messages in thread
From: Thomas Adam @ 2009-07-14 22:42 UTC (permalink / raw)
  To: Unknown; +Cc: git

Dear me --

2009/7/14 Unknown <borg@uu3.net>:
> commit 4ecbc178704ca6c1027a38483e98f5fe493b1322
> Author: Jeff King <peff@peff.net>
> Date:   Thu Jul 9 02:37:35 2009 -0400
>
> bla bla.. some strange SUDO fix (who the hell uses git that way?)
> I dont like it.. git-add in libexecdir was good!

No, your understanding of that stinks.  The test, *without* your
so-called patch wotk just fine.

-- Thomas Adam

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [commit 4ecbc178704] Incosistency?
  2009-07-14 21:48 ` Jeff King
  2009-07-14 22:30   ` Johannes Schindelin
@ 2009-07-15  8:32   ` Unknown
  2009-07-15  9:42     ` Jeff King
  1 sibling, 1 reply; 7+ messages in thread
From: Unknown @ 2009-07-15  8:32 UTC (permalink / raw)
  To: Jeff King; +Cc: git

On Tue, 14 Jul 2009, Jeff King wrote:
> Hmm. I think I wrote a better commit message than that...
Yes you did :)

> No. Two things you are missing:
>
>  1. "git-add" still goes in exec-dir. It's just not the magic one we do
>     separately (see how we no longer need to use filter-out?).
Right. but git-add now is a link to git. Now we have one more file out 
there.

>  2. check_bindir is actually about looking for dashed-form commands in
>     the $bindir, which would indicate cruft from an older installed
>     version of git. We can't use "git" for this, because that is the
>     command that is _supposed_ to be in $bindir.
Indeed. Thanks for clarification.

Regards,
Borg

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [commit 4ecbc178704] Incosistency?
  2009-07-15  8:32   ` Unknown
@ 2009-07-15  9:42     ` Jeff King
  2009-07-17 17:42       ` Unknown
  0 siblings, 1 reply; 7+ messages in thread
From: Jeff King @ 2009-07-15  9:42 UTC (permalink / raw)
  To: Unknown; +Cc: git

On Wed, Jul 15, 2009 at 10:32:32AM +0200, Unknown wrote:

> > 1. "git-add" still goes in exec-dir. It's just not the magic one we do
> >    separately (see how we no longer need to use filter-out?).
> Right. but git-add now is a link to git. Now we have one more file
> out there.

Sorry, I don't understand the significance. Is having 'git' in the
execdir causing some kind of problem?

I agree that it shouldn't be necessary for most sane setups, but sadly
there are some insane ones, and I don't think this solution should be
hurting anyone else. Am I wrong?

-Peff

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [commit 4ecbc178704] Incosistency?
  2009-07-15  9:42     ` Jeff King
@ 2009-07-17 17:42       ` Unknown
  0 siblings, 0 replies; 7+ messages in thread
From: Unknown @ 2009-07-17 17:42 UTC (permalink / raw)
  To: Jeff King; +Cc: git

Sorry for long answer.. my CRT died.. and I had to get temp replacement.

After resolving conflicts it should work clean on my old cygwin too.
So no problem. I think its best to close this topic.

Regards,
Borg

On Wed, 15 Jul 2009, Jeff King wrote:
> Sorry, I don't understand the significance. Is having 'git' in the
> execdir causing some kind of problem?
>
> I agree that it shouldn't be necessary for most sane setups, but sadly
> there are some insane ones, and I don't think this solution should be
> hurting anyone else. Am I wrong?
>
> -Peff
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-07-17 17:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-14 21:41 [commit 4ecbc178704] Incosistency? Unknown
2009-07-14 21:48 ` Jeff King
2009-07-14 22:30   ` Johannes Schindelin
2009-07-15  8:32   ` Unknown
2009-07-15  9:42     ` Jeff King
2009-07-17 17:42       ` Unknown
2009-07-14 22:42 ` Thomas Adam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).