diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-20 11:37:02 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:36 +0100 |
commit | 412ac01000c57be8630140eef8ed531b0f9f8650 (patch) | |
tree | 3900e369594b6ba88bb695ddaa4e88bac5768aac | |
parent | a46e64771089cb74397089e84f26bd706d013316 (diff) | |
download | vyos-live-build-412ac01000c57be8630140eef8ed531b0f9f8650.tar.gz vyos-live-build-412ac01000c57be8630140eef8ed531b0f9f8650.zip |
Re-order a case statement for consistency.
-rwxr-xr-x | helpers/lh_binary_includes | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/lh_binary_includes b/helpers/lh_binary_includes index e86150f38..f97d735f7 100755 --- a/helpers/lh_binary_includes +++ b/helpers/lh_binary_includes @@ -75,13 +75,13 @@ case "${LH_ARCHITECTURE}" in ARCH="386" ;; - sparc) - ARCH="spa" - ;; - powerpc) ARCH="ppc" ;; + + sparc) + ARCH="spa" + ;; esac # Working arround vfat limitations |