diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-10 06:12:53 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-10 06:12:53 +0000 |
commit | ee66677a7a4c93fa63e21b0e7f1ea2e081060abb (patch) | |
tree | 086bc6374cc176de9e2533a2b8b25ab0ef497b15 /gnu/usr.bin/cvs/Makefile.inc | |
parent | 4c3763445ddc83d75b7e77c33aa5b1871fe550b7 (diff) |
Remove kludges intended to support src trees with partial obj trees.
Discussed with: ru
Notes
Notes:
svn path=/head/; revision=147225
Diffstat (limited to 'gnu/usr.bin/cvs/Makefile.inc')
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.inc | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.inc b/gnu/usr.bin/cvs/Makefile.inc index e1889d679ced..4acfa0b9cd7a 100644 --- a/gnu/usr.bin/cvs/Makefile.inc +++ b/gnu/usr.bin/cvs/Makefile.inc @@ -1,21 +1,13 @@ +# $FreeBSD$ + .if !defined(CVSDIR) CVSDIR= $(.CURDIR)/../../../../contrib/cvs -.if exists(${.OBJDIR}/../lib) LIBCVSDIR= ${.OBJDIR}/../lib -.else -LIBCVSDIR= ${.CURDIR}/../lib -.endif - LIBCVS= ${LIBCVSDIR}/libcvs.a -.if exists(${.OBJDIR}/../libdiff) LIBDIFFDIR= ${.OBJDIR}/../libdiff -.else -LIBDIFFDIR= ${.CURDIR}/../libdiff -.endif - LIBDIFF= ${LIBDIFFDIR}/libdiff.a .if exists(${.CURDIR}/../../Makefile.inc) |