|
Can't locate object method "path" via package "Autom4te::Request" when building |
|
|
|
|
Written by Administrator
|
|
Tuesday, 14 November 2006 |
If you get the error:
Can't locate object method "path" via package "Autom4te::Request" (perhaps you forgot to load "Autom4te::Request"?)
when building AST the likely cause is that it is trying to run autoheader (incorrectly) and your version of autotools it out of date. This is a known problem with RedHat Enterprise Linux 3. To fix this problem we just need to reconfigure AST with your version of autotools. In the src directory, run the following commands:
aclocal -I m4
libtoolize --copy --force
automake -a -c
autoconf -f
autoheader
./configure
Now you should be able to build AST without problems.
References:
[1] Problem building ACE 5.4.2 with configure
|