Details
Description
Upgrading autotools on the machine used to make releases would probably help to fix issues on non-Linux systems such as AIX.
Here is a script to upgrade all configure.ac:
for d in $( find . -name configure.ac | sed 's@/[^/]*$@@' )
do
echo autoreconf/autoupdate for $d
( cd $d ; autoreconf -i && autoupdate ) || exit 1
done
Attachments
Issue Links
- blocks
-
AXIS2C-1424 AIX 5.2/5.3 build issues
- Closed