mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 22:28:27 +00:00
from a launchpad-buildd-like setup, which passes ARCH and SUBARCH in the environment, because auto/config and auto/build both rely on this. So don't scatter dpkg --print-architecture calls throughout, especially when many of these are not cross-build-aware.
9 lines
164 B
Bash
Executable File
9 lines
164 B
Bash
Executable File
#! /bin/sh -ex
|
|
|
|
case $ARCH in
|
|
i386|amd64)
|
|
rm -f /usr/sbin/grub-install
|
|
dpkg-divert --quiet --remove --rename /usr/sbin/grub-install
|
|
;;
|
|
esac
|