diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-02-22 15:30:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-02-22 15:30:31 +0000 |
commit | 89d3e577e9a10d8f75b87d5ec44d801efbb7f3c7 (patch) | |
tree | 55dc06c7a7f8439cfaefe0bf96fee2bd23f4ab6e /main/syslinux/update-extlinux | |
parent | 164dc46b8746adaca9a0758d5485ad529c02c7ba (diff) | |
download | aports-89d3e577e9a10d8f75b87d5ec44d801efbb7f3c7.tar.bz2 aports-89d3e577e9a10d8f75b87d5ec44d801efbb7f3c7.tar.xz |
main/syslinux: install libutil.c32
Diffstat (limited to 'main/syslinux/update-extlinux')
-rwxr-xr-x | main/syslinux/update-extlinux | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/main/syslinux/update-extlinux b/main/syslinux/update-extlinux index 7288861932..74bd429ffc 100755 --- a/main/syslinux/update-extlinux +++ b/main/syslinux/update-extlinux @@ -159,14 +159,12 @@ fi mv $conf.new $conf -everbose "Installing mboot.c32 to /boot." -cp /usr/share/syslinux/mboot.c32 /boot - -everbose "Installing menu.c32 to /boot." -cp /usr/share/syslinux/menu.c32 /boot - -everbose "Installing $syslinux_menu to /boot." -cp /usr/share/syslinux/vesamenu.c32 /boot +everbose "Installing libutil.c32 mboot.c32 menu.c32 vesamenu.c32 to /boot." +cp /usr/share/syslinux/libutil.c32 \ + /usr/share/syslinux/mboot.c32 \ + /usr/share/syslinux/menu.c32 \ + /usr/share/syslinux/vesamenu.c32 \ + /boot case "$(stat -f -c '%T' /boot)" in ext*) extlinux --update /boot;; |