2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00

efibootmgr: remove usage of install

This commit is contained in:
Dylan Araps 2021-07-01 16:29:19 +00:00
parent b100d0a2bb
commit e4433ed706
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C

View File

@ -2,5 +2,9 @@
make CC="${CC:-cc}" EFIDIR=/boot/EFI efibootmgr
install -Dm0755 src/efibootmgr "$1/usr/bin/efibootmgr"
install -Dm0644 src/efibootmgr.8 "$1/usr/share/man/man8/efibootmgr.8"
mkdir -p \
"$1/usr/bin" \
"$1/usr/share/man/man8"
cp -f src/efibootmgr "$1/usr/bin"
cp -f src/efibootmgr.8 "$1/usr/share/man/man8"