Re: eruby installation remote
Shugo Maeda <[email protected]>
| Newsgroups | gmane.comp.apache.mod-ruby |
|---|---|
| Message-ID | <[email protected]> |
Hi, At Thu, 26 Feb 2004 11:44:22 -0600, <[email protected]> wrote: > From the Apache error log: > make: execvp: /home/theketch/public_html/cgi-bin/eruby-1.0.5/bin2c: Permission denied Please make /home/theketch/public_html/cgi-bin/eruby-1.0.5/bin2c executable like this: $ chmod +x bin2c or you can change Makefile.in like this: Index: Makefile.in =================================================================== RCS file: /src/eruby/Makefile.in,v retrieving revision 1.18 diff -u -r1.18 Makefile.in --- Makefile.in 26 Jul 2003 10:21:33 -0000 1.18 +++ Makefile.in 27 Feb 2004 01:23:48 -0000 @@ -160,7 +160,7 @@ $(RM) $@~ eruby_logo.c: @VPATH@eruby_logo.png - $(srcdir)/bin2c $(srcdir)/eruby_logo.png + $(RUBY) $(srcdir)/bin2c $(srcdir)/eruby_logo.png eruby_lib.@OBJEXT@: @VPATH@eruby_lib.c @[email protected] config.h eruby_logo.@OBJEXT@: @VPATH@eruby_logo.c @VPATH@eruby_logo.h eruby_main.@OBJEXT@: @VPATH@eruby_main.c @[email protected] @VPATH@eruby_logo.h =================================================================== Shugo