]> code.delx.au - refind/blobdiff - install.sh
Fixed compilation bug for 32-bit systems that caused filesystem name issues.
[refind] / install.sh
index 961c90c5462c44d39c39a37001a03f023029a3c7..9d612a85bebde9888442bbf88894a8caacae9bcb 100644 (file)
@@ -125,7 +125,7 @@ CopyRefindFiles() {
 MountOSXESP() {
    # Identify the ESP. Note: This returns the FIRST ESP found;
    # if the system has multiple disks, this could be wrong!
-   Temp=`diskutil list | grep EFI`
+   Temp=`diskutil list | grep " EFI "`
    Esp=/dev/`echo $Temp | cut -f 5 -d ' '`
    # If the ESP is mounted, use its current mount point....
    Temp=`df | grep $Esp`