Upgrade autotools
-----------------
Key: AXIS2C-1436
URL: https://issues.apache.org/jira/browse/AXIS2C-1436
Project: Axis2-C
Issue Type: Improvement
Components: build system (Unix/Linux)
Affects Versions: 1.6.0, 1.7.0, Current (Nightly)
Reporter: Olivier Mengué
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
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.