Originally posted by malverian
NOTE! The binary installer on the website is out of date and does NOT work! The guides on Laanx are also out of date. See below for the fix.
You can get the latest version of the scripts here:
http://snafu.rabidgeek.com/~malverian/misc/easy_planeshift.tar.gz
Be sure to read the README file before proceding. For a primer, see the \"QUICK START\" section.
Hi,
The scripts look really fine. There was only one small glitch.
When checking automake version:
./check_deps.sh: line 57: [: 4-p6: integer expression expected
1.4-p6
Debian\'s (SID) automake-1.4 has a non integer minor version

I don\'t really know how it could be intelligently worked around.
Anyway it\'s cosmetic since the build commences undisturbed. The script is unable to detect the incorrect automake version.
No I figured one way. It would be to truncate the version number after a digit_dot_digit sequence. 1.4-p6 would become 1.4
perl -e \'$line=<>; if($line=~/(\\d\\.\\d)/){print \"$1\\n\"}\'
This does it. probably possible in sed too.