diff --git a/module/mescc/mescc.scm b/module/mescc/mescc.scm index f262fc7f..563f1775 100644 --- a/module/mescc/mescc.scm +++ b/module/mescc/mescc.scm @@ -363,7 +363,7 @@ (let* ((machine (option-ref options 'machine #f)) (arch (option-ref options 'arch #f)) (machine (or machine arch "32"))) - (cond ((member machine '("x86_64")) "64") + (cond ((member machine '("64" "x86_64")) "64") ((member machine '("arm")) "32") (else "32"))))