From e1ac9ebd9ddf1d101e3e95379a97030e37ca8e3e Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Sun, 12 May 2019 22:56:51 +0200 Subject: [PATCH] Fix iso generation echo -e does not work on ubuntu echo does. It's the opposite on archlinux... Use printf! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1cef589..12a0070 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ kernel:$(asmobj) $(cobj) linker.ld fd.iso: kernel mkdir -p isodir/boot/grub cp $< isodir/boot/ - @echo "menuentry \"myos\" {\n\tmultiboot /boot/kernel\n}" > isodir/boot/grub/grub.cfg + @printf "menuentry \"myos\" {\n\tmultiboot /boot/kernel\n}" > isodir/boot/grub/grub.cfg grub-mkrescue -o $@ isodir