0

When I try to run sudo update-grub, I get the following error:

    Generating grub configuration file ...  
    /etc/grub.d/10_lupin: 26: /etc/grub.d/10_lupin: data: not found  

Any ideas what this could mean or how to fix it?
Here is the contents of my 10_lupin file: http://pastebin.com/nDZ9v5sJ

Pilot6
  • 92,041

1 Answers1

1

Your /etc/grub.d/10_lupin contains an error in line 26:

data otdir="${prefix}/share"

should be

datarootdir="${prefix}/share"

To restore that file just reinstall package lupin-support

sudo apt-get install --reinstall lupin-support
ngng
  • 463