-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello Marcelo,
Thank you for reporting this bug. I finally tracked the source of the unwanted behavior to the configure script. Here's the patch I had to apply to make it behave correctly again. It was the call to sed that misbehaved. Somehow the brackets was removed somewhere between interpretation and execution which gave the unwanted effect. I will of course communicate this upstream. - --- configure.ac~ 2005-04-23 22:45:24.000000000 +0000 +++ configure.ac 2005-08-02 01:22:47.700000000 +0000 @@ -138,9 +138,7 @@ RELEASE=`cat $srcdir/VERSION` echo "Release set to $RELEASE" AC_SUBST(RELEASE) - -VERSION_NUMBER=`cat $srcdir/VERSION \ - - | sed 's/[^0-9]/ /g' \ - - | awk '{printf "%d%03d%03d",$1,$2,$3}'` +VERSION_NUMBER=`cat $srcdir/VERSION | awk -F. '{printf "%d%03d%03d",$1,$2,$3}'` echo "Version number set to $VERSION_NUMBER" AC_SUBST(VERSION_NUMBER) - -- Tomas Fasth <[EMAIL PROTECTED]> GnuPG Fingerprint: DC7B 9453 7F26 1BF9 6B21 9F90 C187 7355 9FE8 D504 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFC7zsZwYdzVZ/o1QQRAkp8AJwIOrtScSBzVp+dFgCszsE0IZIYIQCdEayR lPW13EACKLCS6GvJY8E2jyw= =PO1m -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]