diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-12-01 20:14:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-12-01 20:14:07 +0000 |
commit | 6b3f2b3d3ab0435afd7422c6ab38479bb5b1ba70 (patch) | |
tree | e715da4c7e1ec8b4f830fbe00ab28872ecb07be3 /configure.in | |
parent | 38d7adc4e997d0503473938a05364fa752e516f7 (diff) | |
download | glibc-6b3f2b3d3ab0435afd7422c6ab38479bb5b1ba70.tar.gz glibc-6b3f2b3d3ab0435afd7422c6ab38479bb5b1ba70.tar.xz glibc-6b3f2b3d3ab0435afd7422c6ab38479bb5b1ba70.zip |
Update.
2000-12-01 Ulrich Drepper <drepper@redhat.com> * configure.in: Correct test for pserver CVS access.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.in b/configure.in index fc260c1bd3..97240bcc43 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) |