[ruby-talk:00227] Re: [ruby-dev:4971] Ruby 1.3.1-990210

From: gotoken@... (GOTO Kentaro)
Date: 1999-02-10 12:38:49 UTC
List: ruby-talk #227
Hi, 

He said in Japanese:
```
   When I was compiling after `configure --program-suffix="-1.3"', 
   it failed in the `make install' stage as the file `ruby' not found.  
   I fixed as follows:

--- Makefile.in.orig	Wed Feb 10 21:13:13 1999
+++ Makefile.in	Wed Feb 10 21:13:34 1999
@@ -23,7 +23,7 @@
 
 RUBY_INSTALL_NAME=@RUBY_INSTALL_NAME@
 binsuffix = @binsuffix@
-PROGRAM=$(RUBY_INSTALL_NAME)$(binsuffix)
+PROGRAM=ruby$(binsuffix)
 
 #### End of system configuration section. ####
'''

thanks. 

-- gotoken

In message "[ruby-talk:00226] Re: [ruby-dev:4971] Ruby 1.3.1-990210"
    on 99/02/10, ttate@jaist.ac.jp <ttate@jaist.ac.jp> writes:
>立石です。
>
>--program-suffix="-1.3"を付けた所"make install"時に
>rubyというファイルがないと言われて失敗します。
>一応Makefile.inを以下のように修正しました。
>
>--- Makefile.in.orig	Wed Feb 10 21:13:13 1999
>+++ Makefile.in	Wed Feb 10 21:13:34 1999
>@@ -23,7 +23,7 @@
> 
> RUBY_INSTALL_NAME=@RUBY_INSTALL_NAME@
> binsuffix = @binsuffix@
>-PROGRAM=$(RUBY_INSTALL_NAME)$(binsuffix)
>+PROGRAM=ruby$(binsuffix)
> 
> #### End of system configuration section. ####

In This Thread