non-cvs trees would not make after configure using ./configure && make due to

the last command returning non-zero. Also, check for CVS in $srcdir rather than
.
This commit is contained in:
Bill Currie 2001-01-06 04:19:20 +00:00
parent 8706ada7c6
commit 9cd130ec69

View file

@ -1250,4 +1250,8 @@ AC_MSG_RESULT([
Per-user game data directory: $userpath
Global configuration file: $globalconf
])
test -d ./CVS && echo -e "WARNING: Hackers at work, watch for falling bits of code.\n(This is from a development CVS tree. Expect problems)\n"
if test -d $srcdir/CVS; then
echo "WARNING: Hackers at work, watch for falling bits of code."
echo "(This is from a development CVS tree. Expect problems)"
echo
fi