Bug 567616: can't find info files



>>>>> "James" == James Amundson <amundson@fnal.gov> writes:

    James> (2) is supposed to be the way it works right now. There is a portability
    James> bug that I should fix. I know you are running on Solaris. I know that
    James> the Solaris /bin/sh is the least featureful /bin/sh I ever use. I will
    James> investigate.

I think you've been bitten by shell-quoting hell.  configure.in says:

expanded_infodir="`eval "prefix=${tmp_prefix};echo ${infodir}"`"

But I really think it should read

expanded_infodir="`eval \"prefix=${tmp_prefix};echo ${infodir}\"`"

Note the backslashes.

I'll try this out on my Linux box later to make sure it's still ok,
but I don't expect any problems.

Ray