mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Check for .git as well as .svn when autosetting -Werror
This commit is contained in:
parent
cb5bd43d4c
commit
fb5b0dc5c3
1 changed files with 1 additions and 1 deletions
|
@ -1348,7 +1348,7 @@ dnl ==================================================================
|
|||
dnl Misc checks
|
||||
dnl ==================================================================
|
||||
|
||||
if test -d $srcdir/.svn; then
|
||||
if test -d $srcdir/.svn -o -d $srcdir/.git; then
|
||||
cvs_def_enabled="!= xno"
|
||||
cvs_def_disabled="= xyes"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue