comparison sources/patches/alt-linux-noperl.patch @ 565:d07f5a1af6bc

Fix typo.
author Rob Landley <rob@landley.net>
date Sat, 03 Jan 2009 18:31:41 -0600
parents 0dd6089867c1
children
comparison
equal deleted inserted replaced
564:425a7d32446a 565:d07f5a1af6bc
460 + 460 +
461 +# For both Milliseconds and Microseconds 461 +# For both Milliseconds and Microseconds
462 + 462 +
463 +for i in "MSEC 1000" "USEC 1000000" 463 +for i in "MSEC 1000" "USEC 1000000"
464 +do 464 +do
465 + NAME=$(echo $i | cut -d ' ' -f 2) 465 + NAME=$(echo $i | cut -d ' ' -f 1)
466 + PERIOD=$(echo $i | cut -d ' ' -f 2) 466 + PERIOD=$(echo $i | cut -d ' ' -f 2)
467 + 467 +
468 + # Find greatest common denominator (using Euclid's algorithm) 468 + # Find greatest common denominator (using Euclid's algorithm)
469 + 469 +
470 + A=$HZ 470 + A=$HZ