diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 20:46:49 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 20:46:49 +0000 |
commit | 15592b02ebadc327c4f46d9f53f99b26f7798b2e (patch) | |
tree | 7fc19827be3a94e6eed8ffdacb4614e930863247 /lib | |
parent | 180753ef179b1c503f44e7625c467758dd6f3c4d (diff) | |
download | FreeBSD-src-15592b02ebadc327c4f46d9f53f99b26f7798b2e.zip FreeBSD-src-15592b02ebadc327c4f46d9f53f99b26f7798b2e.tar.gz |
Unbreak lib/csu for i386 and amd64 (MK_LIB32 == yes) after r313582
I accidentally goofed up the directory for lib/libc in the CFLAGS
This is a direct commit to this branch
Pointyhat to: ngie
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/i386-elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csu/i386-elf/Makefile b/lib/csu/i386-elf/Makefile index 39d1a67..dd387b9 100644 --- a/lib/csu/i386-elf/Makefile +++ b/lib/csu/i386-elf/Makefile @@ -9,7 +9,7 @@ FILESGRP= ${LIBGRP} FILESMODE= ${LIBMODE} FILESDIR= ${LIBDIR} CFLAGS+= -I${.CURDIR:H}/common \ - -I${SRCTOP}/libc/include + -I${SRCTOP}/lib/libc/include CLEANFILES= ${FILES} crt1_c.o crt1_s.o gcrt1_c.o Scrt1_c.o CLEANFILES+= crt1_c.s gcrt1_c.s Scrt1_c.s |