All of lore.kernel.org
 help / color / mirror / Atom feed
* Can't build git on Lion?
@ 2011-07-28  7:59 Jonathan del Strother
  2011-07-28 12:19 ` Jack Nagel
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan del Strother @ 2011-07-28  7:59 UTC (permalink / raw)
  To: Git Mailing List

Heya,
I've upgraded my OS X machine from 10.6 to 10.7 (Lion), and seem to be
no longer able to build git.  Running 'make' results in:
    GEN git-add--interactive
make[2]: *** No rule to make target
`/System/Library/Perl/5.10.0/darwin-thread-multi-2level/Config.pm',
needed by `perl.mak'.  Stop.
make[1]: *** [instlibdir] Error 2
make: *** [git-add--interactive] Error 2

There's no /System/Library/Perl/5.10.0 directory, but there is a 5.10
directory.  Symlinking that to 5.10.0 gives me :

    GEN git-add--interactive
Writing perl.mak for Git
make[2]: *** [perl.mak] Error 1
make[1]: *** [instlibdir] Error 2
make: *** [git-add--interactive] Error 2


Running 'perl -v' shows I'm running v5.12.3.  Where is that
"/System/Library/Perl/5.10.0/darwin-thread-multi-2level/Config.pm"
path obtained from?  Any other information I can provide?

-Jonathan

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

* Re: Can't build git on Lion?
  2011-07-28  7:59 Can't build git on Lion? Jonathan del Strother
@ 2011-07-28 12:19 ` Jack Nagel
  2011-07-29  6:38   ` David Aguilar
  0 siblings, 1 reply; 5+ messages in thread
From: Jack Nagel @ 2011-07-28 12:19 UTC (permalink / raw)
  To: git

> There's no /System/Library/Perl/5.10.0 directory, but there is a 5.10
> directory.  Symlinking that to 5.10.0 gives me :

I've seen this issue pop up serveral times in the last few days in various 
places; the solution is to install (or re-install) XCode as the installation 
does not persist correctly across upgrades. Versions prior to 4.1 are 
incompatible with Lion; also, after you download it from the App Store, make 
sure that you run the "XCode Installer" app that is placed in your 
Applications folder.

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

* Re: Can't build git on Lion?
  2011-07-28 12:19 ` Jack Nagel
@ 2011-07-29  6:38   ` David Aguilar
  2011-07-29 18:51     ` Jonathan del Strother
  0 siblings, 1 reply; 5+ messages in thread
From: David Aguilar @ 2011-07-29  6:38 UTC (permalink / raw)
  To: Jack Nagel, Jonathan del Strother; +Cc: git

On Thu, Jul 28, 2011 at 12:19:01PM +0000, Jack Nagel wrote:
> > There's no /System/Library/Perl/5.10.0 directory, but there is a 5.10
> > directory.  Symlinking that to 5.10.0 gives me :
> 
> I've seen this issue pop up serveral times in the last few days in various 
> places; the solution is to install (or re-install) XCode as the installation 
> does not persist correctly across upgrades. Versions prior to 4.1 are 
> incompatible with Lion; also, after you download it from the App Store, make 
> sure that you run the "XCode Installer" app that is placed in your 
> Applications folder.

The last time I saw this error it was because the Perl version
changed.  "make clean" fixed it for me.  YMMV.
-- 
					David

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

* Re: Can't build git on Lion?
  2011-07-29  6:38   ` David Aguilar
@ 2011-07-29 18:51     ` Jonathan del Strother
  2011-07-30  2:47       ` Shigeya Suzuki
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan del Strother @ 2011-07-29 18:51 UTC (permalink / raw)
  To: David Aguilar; +Cc: Jack Nagel, git

On 29 July 2011 07:38, David Aguilar <davvid@gmail.com> wrote:
> On Thu, Jul 28, 2011 at 12:19:01PM +0000, Jack Nagel wrote:
>> > There's no /System/Library/Perl/5.10.0 directory, but there is a 5.10
>> > directory.  Symlinking that to 5.10.0 gives me :
>>
>> I've seen this issue pop up serveral times in the last few days in various
>> places; the solution is to install (or re-install) XCode as the installation
>> does not persist correctly across upgrades. Versions prior to 4.1 are
>> incompatible with Lion; also, after you download it from the App Store, make
>> sure that you run the "XCode Installer" app that is placed in your
>> Applications folder.
>
> The last time I saw this error it was because the Perl version
> changed.  "make clean" fixed it for me.  YMMV.

Oh, good point.  Yes, 'make clean' fixed things, thanks for the tip.

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

* Re: Can't build git on Lion?
  2011-07-29 18:51     ` Jonathan del Strother
@ 2011-07-30  2:47       ` Shigeya Suzuki
  0 siblings, 0 replies; 5+ messages in thread
From: Shigeya Suzuki @ 2011-07-30  2:47 UTC (permalink / raw)
  To: Jonathan del Strother; +Cc: David Aguilar, Jack Nagel, git

Just for info, I have successfully built v1.7.6 on both Xcode 4.1 and
4.2, both on Lion.

shigeya

On 2011/07/30 3:51, Jonathan del Strother wrote:
> On 29 July 2011 07:38, David Aguilar <davvid@gmail.com> wrote:
>> On Thu, Jul 28, 2011 at 12:19:01PM +0000, Jack Nagel wrote:
>>>> There's no /System/Library/Perl/5.10.0 directory, but there is a 5.10
>>>> directory.  Symlinking that to 5.10.0 gives me :
>>>
>>> I've seen this issue pop up serveral times in the last few days in various
>>> places; the solution is to install (or re-install) XCode as the installation
>>> does not persist correctly across upgrades. Versions prior to 4.1 are
>>> incompatible with Lion; also, after you download it from the App Store, make
>>> sure that you run the "XCode Installer" app that is placed in your
>>> Applications folder.
>>
>> The last time I saw this error it was because the Perl version
>> changed.  "make clean" fixed it for me.  YMMV.
> 
> Oh, good point.  Yes, 'make clean' fixed things, thanks for the tip.
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2011-07-30  3:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-28  7:59 Can't build git on Lion? Jonathan del Strother
2011-07-28 12:19 ` Jack Nagel
2011-07-29  6:38   ` David Aguilar
2011-07-29 18:51     ` Jonathan del Strother
2011-07-30  2:47       ` Shigeya Suzuki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.