aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/gen/Makefile.inc
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2002-11-18 09:50:57 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2002-11-18 09:50:57 +0000
commitc51d717f0c0adcb64bbf49ef373972c2367c50ec (patch)
tree4be9315729643aac6dedae31e641794773358f91 /lib/libc/gen/Makefile.inc
parent5d7c75f0adffaee638096a11223106ae303e9a66 (diff)
downloadsrc-c51d717f0c0adcb64bbf49ef373972c2367c50ec.tar.gz
src-c51d717f0c0adcb64bbf49ef373972c2367c50ec.zip
libc_r wasn't so tied to libc for 22 months.
Notes
Notes: svn path=/head/; revision=107052
Diffstat (limited to 'lib/libc/gen/Makefile.inc')
-rw-r--r--lib/libc/gen/Makefile.inc8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc
index d038b813a346..ba35e04263f5 100644
--- a/lib/libc/gen/Makefile.inc
+++ b/lib/libc/gen/Makefile.inc
@@ -2,7 +2,7 @@
# $FreeBSD$
# machine-independent gen sources
-.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/gen ${.CURDIR}/../libc/gen
+.PATH: ${.CURDIR}/${MACHINE_ARCH}/gen ${.CURDIR}/gen
SRCS+= __xuname.c _pthread_stubs.c _rand48.c _spinlock_stub.c _thread_init.c \
alarm.c arc4random.c assert.c basename.c check_utility_compat.c \
@@ -32,11 +32,10 @@ SRCS+= __xuname.c _pthread_stubs.c _rand48.c _spinlock_stub.c _thread_init.c \
valloc.c vis.c wait.c wait3.c waitpid.c
# machine-dependent gen sources
-.if exists(${.CURDIR}/../libc/${MACHINE_ARCH}/gen/Makefile.inc)
-.include "${.CURDIR}/../libc/${MACHINE_ARCH}/gen/Makefile.inc"
+.if exists(${.CURDIR}/${MACHINE_ARCH}/gen/Makefile.inc)
+.include "${.CURDIR}/${MACHINE_ARCH}/gen/Makefile.inc"
.endif
-.if ${LIB} == "c"
MAN+= alarm.3 arc4random.3 \
basename.3 check_utility_compat.3 clock.3 \
confstr.3 ctermid.3 daemon.3 \
@@ -132,4 +131,3 @@ MLINKS+=ttyname.3 isatty.3 ttyname.3 ttyslot.3
MLINKS+=tzset.3 tzsetwall.3
MLINKS+=unvis.3 strunvis.3 unvis.3 strunvisx.3
MLINKS+=vis.3 strvis.3 vis.3 strvisx.3
-.endif