Re: compiling problems
I solved the problem by replacing the tildes with spelling out my home
directory. I was quite shocked to find out about expansion not occurring
bash-2.05a$ echo ~
/home/jspeigle
bash-2.05a$ echo abc~
abc~
bash-2.05a$ echo ~abc
~abc
bash-2.05a$ echo ~/home
/home/jspeigle/home
so maybe ~/ would have worked. Thanks to everybody.
> > i am having problems compiling on solaris. can you help me stop it
> > from removing docs from /usr/local with command-line switchees? I
> > have a user account and can't touch /usr/local myself.
> [...]
> > ./configure --prefix=~ --exec-prefix=~/bin --disable-pgp --infodir=~ &&
> > make install
>
> Try --with-docdir=PATH, as listed in ./configure --help
>
> --
> Todd