changeset 933:ff7be0c4daeb

Edge case in perl removal patch. Probably irrelevant, but match old perl script's output anyway.
author Rob Landley <rob@landley.net>
date Sun, 13 Dec 2009 00:13:44 -0600
parents 61e95d49f520
children a7423b680bb0
files sources/patches/linux-2.6.25-rc1-noperl.patch
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sources/patches/linux-2.6.25-rc1-noperl.patch	Sun Dec 13 00:13:09 2009 -0600
+++ b/sources/patches/linux-2.6.25-rc1-noperl.patch	Sun Dec 13 00:13:44 2009 -0600
@@ -507,7 +507,7 @@
 +
 +			# Keep increasing $SHIFT until we've got 32 bits.
 +
-+			[ $MUL32 -gt $(( 1 << 31 )) ] && break
++			[ $MUL32 -ge $(( 1 << 31 )) ] && break
 +			SHIFT=$(( $SHIFT + 1 ))
 +		done
 +		MUL32=$( printf %x $MUL32 )