diff options
author | kan <kan@FreeBSD.org> | 2003-07-02 01:52:06 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2003-07-02 01:52:06 +0000 |
commit | 8701d3b8e4785a0a7ce32e081947393b3dcb1ae1 (patch) | |
tree | b6afbeb30b996485723e2c559c06f2f84c805069 | |
parent | ed5355f79dc44120282dcb92f3b255410da7455b (diff) | |
download | FreeBSD-src-8701d3b8e4785a0a7ce32e081947393b3dcb1ae1.zip FreeBSD-src-8701d3b8e4785a0a7ce32e081947393b3dcb1ae1.tar.gz |
libc/${MACHINE_ARCH} include directory is required by Alpha,
add it to CFLAGS.
-rw-r--r-- | lib/libc_r/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc_r/Makefile b/lib/libc_r/Makefile index f5edef9..3483437 100644 --- a/lib/libc_r/Makefile +++ b/lib/libc_r/Makefile @@ -11,7 +11,7 @@ LIB=c_r SHLIB_MAJOR= 5 CFLAGS+=-DPTHREAD_KERNEL -D_THREAD_SAFE CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/uthread \ - -I${.CURDIR}/../../include + -I${.CURDIR}/../../include -I${.CURDIR}/../libc/${MACHINE_ARCH} # Uncomment this if you want libc_r to contain debug information for # thread locking. |