The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Makefile issues on Solaris - the workaround

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Daniel Berger

Posts: 1383
Nickname: djberg96
Registered: Sep, 2004

Daniel Berger is a Ruby Programmer who also dabbles in C and Perl
Makefile issues on Solaris - the workaround Posted: Jan 3, 2006 8:17 AM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Daniel Berger.
Original Post: Makefile issues on Solaris - the workaround
Feed Title: Testing 1,2,3...
Feed URL: http://djberg96.livejournal.com/data/rss
Feed Description: A blog on Ruby and other stuff.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Daniel Berger
Latest Posts From Testing 1,2,3...

Advertisement
As of Ruby 1.8.3, makefile generation on Solaris is effectively broken with automake 2.59 because it no longer likes the Solaris 'install' program. At least, that's my understanding. The problem in Ruby's case is with default install targets. First, Solaris does not have install-sh by default, and second, the target looks for install-sh in the current directory instead of looking for it in the $PATH.

The workaround I'm using for now is to copy the install-sh that came with the automake package into my $PATH. However, for individual Makefiles you will still need to edit the file manually and replace "./install-sh" with "install-sh".

Pain in the ass.

Read: Makefile issues on Solaris - the workaround

Topic: RMagick Project Previous Topic   Next Topic Topic: Ruby 1.8.4 preview3

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use