Browse Source

Fix 32bit check.

Fixes incorrect check for 32 bit architecture.
David Kinzer 11 years ago
parent
commit
ea02952a24
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      bin/fetch-configlet

+ 3
- 1
bin/fetch-configlet View File

18
 case $(uname -m) in
18
 case $(uname -m) in
19
     *64*)
19
     *64*)
20
         echo 64bit;;
20
         echo 64bit;;
21
-    *32*)
21
+    *686*)
22
+        echo 32bit;;
23
+    *386*)
22
         echo 32bit;;
24
         echo 32bit;;
23
     *)
25
     *)
24
         echo 64bit;;
26
         echo 64bit;;