mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 20:21:38 +00:00
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:
parent
8706ada7c6
commit
9cd130ec69
1 changed files with 5 additions and 1 deletions
|
@ -1250,4 +1250,8 @@ AC_MSG_RESULT([
|
||||||
Per-user game data directory: $userpath
|
Per-user game data directory: $userpath
|
||||||
Global configuration file: $globalconf
|
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
|
||||||
|
|
Loading…
Reference in a new issue