summaryrefslogtreecommitdiff
path: root/src/Propellor/Property
diff options
context:
space:
mode:
authorJoey Hess2017-12-22 09:23:47 -0400
committerJoey Hess2017-12-22 09:23:47 -0400
commit9313b95dfd611b6bef24916d2df4f83ee81f5ae6 (patch)
tree2a28ac0a4ea6fceb8e4e8485fda40f732d1a20db /src/Propellor/Property
parent64fea7ecaf3bc223575f01687423be24403f2cf1 (diff)
fix inversion
Diffstat (limited to 'src/Propellor/Property')
-rw-r--r--src/Propellor/Property/Grub.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property/Grub.hs b/src/Propellor/Property/Grub.hs
index a23f12e4..5cb9077d 100644
--- a/src/Propellor/Property/Grub.hs
+++ b/src/Propellor/Property/Grub.hs
@@ -76,8 +76,8 @@ boots dev = property' ("grub boots " ++ dev) $ \w -> do
targetParam :: GrubTarget -> String
targetParam t = "--target=" ++ case t of
PC -> "i386-pc"
- EFI64 -> "i386-efi"
- EFI32 -> "x86_64-efi"
+ EFI32 -> "i386-efi"
+ EFI64 -> "x86_64-efi"
Coreboot -> "i386-coreboot"
Xen -> "x86_64-xen"