Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
debian xorriso doesn't like -quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
klange committed Feb 7, 2018
1 parent c95e2ad commit 96cb644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -432,7 +432,7 @@ endef

toaruos.iso: _cdrom/ramdisk.img.gz _cdrom/kernel
@${BEG} "ISO" "Building a CD image"
@if grep precise /etc/lsb-release; then grub-mkrescue -o $@ _cdrom; else grub-mkrescue -d /usr/lib/grub/i386-pc --compress=xz -o $@ _cdrom -- -quiet 2> /dev/null; fi
@if [ -e /etc/lsb-release ] && grep precise /etc/lsb-release; then grub-mkrescue -o $@ _cdrom; else grub-mkrescue -d /usr/lib/grub/i386-pc --compress=xz -o $@ _cdrom 2> /dev/null; fi
@${END} "ISO" "Building a CD image"
$(call fixup-cd)
@${INFO} "--" "CD generated"
Expand Down

0 comments on commit 96cb644

Please sign in to comment.