From c8e0c8df8322b0fb62aed025a2fff30755454971 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Sat, 2 Apr 2005 00:11:50 +0000 Subject: [PATCH] nevermind. It helps to do a make bootcd in the terminal that has the value and /usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games:/opt/www/htdig/bin:/usr/lib/java/bin:/usr/lib/java/jre/bin:/opt/kde/bin:/usr/lib/qt/bin to mingw defined. svn path=/trunk/; revision=14429 --- reactos/boot/freeldr/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/boot/freeldr/Makefile b/reactos/boot/freeldr/Makefile index ac8463dacb0..00eae1a6439 100644 --- a/reactos/boot/freeldr/Makefile +++ b/reactos/boot/freeldr/Makefile @@ -38,6 +38,7 @@ clean: $(MAKE) -C tools clean bootcd: +ifeq ($(ARCH),i386) $(CP) bootsect/isoboot.bin ${BOOTCD_DIR}/../isoboot.bin $(CP) bootsect/dosmbr.bin ${BOOTCD_DIR}/loader/dosmbr.bin $(CP) bootsect/ext2.bin ${BOOTCD_DIR}/loader/ext2.bin @@ -46,5 +47,7 @@ bootcd: $(CP) bootsect/isoboot.bin ${BOOTCD_DIR}/loader/isoboot.bin $(CP) freeldr/freeldr.sys ${BOOTCD_DIR}/loader/freeldr.sys $(CP) freeldr/setupldr.sys ${BOOTCD_DIR}/loader/setupldr.sys +endif .PHONY : clean +