bug 758748: change SOURCE_REPO var check from error to warn.

This commit is contained in:
Joey Armstrong 2012-05-25 18:52:52 -04:00
Родитель 2168eeae39
Коммит b1e8f16431
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -227,7 +227,10 @@ ifdef MOZ_SOURCE_STAMP
SOURCE_REPO := $(strip $(SOURCE_REPO))
SOURCE_REPO := $(patsubst ssh://%,http://%,$(SOURCE_REPO))
SOURCE_REPO := $(patsubst %/,%,$(SOURCE_REPO))
$(call errorIfEmpty,SOURCE_REPO)
# command set should change based on revision control use.
# warn for now in case (git, bzr, ...) is in use.
$(call warnIfEmpty,SOURCE_REPO)
# extra sanity check for old versions of hg, no showconfig support
ifeq (http,$(patsubst http%,http,$(SOURCE_REPO)))