From 6b3f2b3d3ab0435afd7422c6ab38479bb5b1ba70 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 1 Dec 2000 20:14:07 +0000 Subject: Update. 2000-12-01 Ulrich Drepper * configure.in: Correct test for pserver CVS access. --- configure.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index fc260c1..97240bc 100644 --- a/configure.in +++ b/configure.in @@ -68,9 +68,11 @@ AC_ARG_WITH(elf, dnl AC_ARG_WITH(cvs, dnl [ --without-cvs if CVS should not be used], with_cvs=$withval, with_cvs=yes) -if test "$with_cvs" = yes && test -d CVS && grep :pserver: CVS/Root > /dev/null -then - with_cvs=no +if test "$with_cvs" = yes; then + if test -d $srcdir/CVS && grep :pserver: $srcdir/CVS/Root > /dev/null + then + with_cvs=no + fi fi AC_SUBST(with_cvs) -- cgit v1.1