Hi, At Tue, 12 Aug 2003 00:53:30 +0900, Brian Candler wrote: > If you configured with --enable-dynamic then you'll have to include > /usr/local/lib/libruby.so* as well. > > Oh, that assumes you have a sensible GNU tar, if stock Solaris then > tar -cf rubydist.tar ...list of files... > gzip -9 rubydist.tar You can install ruby into a particular place by DESTDIR, regardless configured prefix. $ destdir=/var/tmp/clean/install/ruby $ make install DESTDIR=$destdir $ cd $destdir $ tar -cf $tmpdir/rubydist.tar usr/local/* $ gzip -9 $tmpdir/rubydist.tar Note that you have to untar it at the root directory. -- Nobu Nakada