scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 45e3ca168be762275d8af1740e4818286e6f2bbe
parent ece53fd7cdacbcdf1c8b9c00da8ac05b6d7e52e4
Author: Quentin Rameau <quinq@fifth.space>
Date:   Fri, 29 May 2020 17:14:16 +0200

libc: fix crt path in Makefile

This fixes a source path modifier in e4dd267, but not modified in the
build system.

Diffstat:
Msrc/libc/arch/amd64/netbsd/Makefile | 2+-
Msrc/libc/arch/amd64/openbsd/Makefile | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/libc/arch/amd64/netbsd/Makefile b/src/libc/arch/amd64/netbsd/Makefile @@ -34,7 +34,7 @@ all: $(LIBC) $(CRT) $(LIBC): $(OBJS) $(MKLST) -crt.$O: ../crt-posix.s ../../crt-netbsd.s +crt.$O: ../crt-posix.s ../netbsd/crt.s $(GENSRC): syscall.lst gensys.sh $(@:.s=) diff --git a/src/libc/arch/amd64/openbsd/Makefile b/src/libc/arch/amd64/openbsd/Makefile @@ -32,7 +32,7 @@ all: $(LIBC) $(CRT) $(LIBC): $(OBJS) $(MKLST) -crt.$O: ../crt-posix.s ../../crt-openbsd.s +crt.$O: ../crt-posix.s ../openbsd/crt.s $(GENSRC): syscall.lst gensys.sh $(@:.s=)