1
1

Check for .git directory when checking for developer build

This commit was SVN r28149.
Этот коммит содержится в:
Nathan Hjelm 2013-03-06 17:47:27 +00:00
родитель 5b09cccacc
Коммит 809db8f6a9

Просмотреть файл

@ -33,7 +33,7 @@ ompi_show_subtitle "OPAL Configuration options"
# Is this a developer copy?
#
if test -d .svn -o -d .hg; then
if test -d .svn -o -d .hg -o -d .git; then
OMPI_DEVEL=1
else
OMPI_DEVEL=0