From 8f63beaacb158f24ef7ff2e1f3974702c172d295 Mon Sep 17 00:00:00 2001 From: Frans Kaashoek Date: Thu, 30 Aug 2018 13:36:07 -0400 Subject: [PATCH] vectors.pl is executable and asks shell for perl --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a31b01d..d17f1fa 100644 --- a/Makefile +++ b/Makefile @@ -82,6 +82,7 @@ ASFLAGS = -m32 -gdwarf-2 -Wa,-divide # FreeBSD ld wants ``elf_i386_fbsd'' LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null | head -n 1) + xv6.img: bootblock kernel dd if=/dev/zero of=xv6.img count=10000 dd if=bootblock of=xv6.img conv=notrunc @@ -133,7 +134,7 @@ tags: $(OBJS) entryother.S _init etags *.S *.c vectors.S: vectors.pl - perl vectors.pl > vectors.S + ./vectors.pl > vectors.S ULIB = ulib.o usys.o printf.o umalloc.o