diff options
author | ru <ru@FreeBSD.org> | 2002-11-18 09:50:57 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-11-18 09:50:57 +0000 |
commit | 40e2359f4b10f61d80f4c8a2f6d4a3fc5c377d95 (patch) | |
tree | 4be9315729643aac6dedae31e641794773358f91 /lib/libc/string | |
parent | c4af534777a866305e481071a13d258079dd2aba (diff) | |
download | FreeBSD-src-40e2359f4b10f61d80f4c8a2f6d4a3fc5c377d95.zip FreeBSD-src-40e2359f4b10f61d80f4c8a2f6d4a3fc5c377d95.tar.gz |
libc_r wasn't so tied to libc for 22 months.
Diffstat (limited to 'lib/libc/string')
-rw-r--r-- | lib/libc/string/Makefile.inc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc index 63c7af0..8621f26 100644 --- a/lib/libc/string/Makefile.inc +++ b/lib/libc/string/Makefile.inc @@ -1,9 +1,9 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 # $FreeBSD$ -.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/string ${.CURDIR}/../libc/string +.PATH: ${.CURDIR}/${MACHINE_ARCH}/string ${.CURDIR}/string -CFLAGS+= -I${.CURDIR}/../libc/locale +CFLAGS+= -I${.CURDIR}/locale # machine-independent string sources MISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \ @@ -21,11 +21,10 @@ MISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \ # machine-dependent string sources -.if exists(${.CURDIR}/../libc/${MACHINE_ARCH}/string/Makefile.inc) -.include "${.CURDIR}/../libc/${MACHINE_ARCH}/string/Makefile.inc" +.if exists(${.CURDIR}/${MACHINE_ARCH}/string/Makefile.inc) +.include "${.CURDIR}/${MACHINE_ARCH}/string/Makefile.inc" .endif -.if ${LIB} == "c" MAN+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \ strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \ @@ -54,4 +53,3 @@ MLINKS+=wmemchr.3 wmemcmp.3 wmemchr.3 wmemcpy.3 \ wmemchr.3 wcsncpy.3 wmemchr.3 wcspbrk.3 \ wmemchr.3 wcsrchr.3 wmemchr.3 wcsspn.3 \ wmemchr.3 wcsstr.3 -.endif |