[OpenAFS] 1.5.9 configure failure

Marcus Watts mdw@umich.edu
Mon, 23 Oct 2006 19:08:00 -0400


tcreedon <tcreedon@easystreet.com> writes:
> for both 64 and 32 bit:
> 
> config.status: WARNING:  src/JAVA/libjafs/Makefile.in seems to ignore
> the --datarootdir setting
> config.status: error: cannot find input file: src/platform/Makefile.in
> 
> thanks
> 
> tedc

You can ignore the WARNING.  The rule seems to be that the newer the
version of autoconf, the fussier it gets.

Your problem is that "src/platform" disappeared - but not
from configure.in/Makefile.in.

If you remove references to src/platform from both, and run reconf.sh and
reconfigure, you should have good luck.

configure.in:
remove these lines:
	src/platform/Makefile \
	src/platform/${MKAFS_OSTYPE}/Makefile \

Makefile.in
	Probably easiest to find rule for:
		platform: 
			${COMPILE_PART1} platform ${COMPILE_PART2}
	and replace the command with the null shell command `:'
		platform: 
			:
	or you could just get rid of all references to "platform", but
	you'll have to be careful not to botch the continuation lines.

				-Marcus Watts