Yes, it's well known problem
It occures everywhere, where you are using old admin/ directory in your project. I don't understand the author of the 'getversion' alghoritm ot that sources (in admin/), but he wrote not clever alghoritm .
You should cd to <yourproject>/admin/ and edit cvs.sh. You should find function check_autotool_versions(), and edit automake test in it.
Old test:
|
Source code
|
1
2
3
4
5
6
7
8
|
AUTOMAKE_STRING=`$AUTOMAKE --version | head -n 1`
case $AUTOMAKE_STRING in
automake*1.5d* | automake*1.5* | automake*1.5-* )
echo "*** YOU'RE USING $AUTOMAKE_STRING."
echo "*** KDE requires automake 1.6.1 or newer"
exit 1
;;
automake*1.6.* | automake*1.7* ) : ;;
|
And new one:
|
Source code
|
1
2
3
4
5
6
7
8
|
AUTOMAKE_STRING=`$AUTOMAKE --version | head -n 1`
case $AUTOMAKE_STRING in
automake*1.5d* | automake*1.5* | automake*1.5-* )
echo "*** YOU'RE USING $AUTOMAKE_STRING."
echo "*** KDE requires automake 1.6.1 or newer"
exit 1
;;
automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* ) : ;;
|