normalize values of DO_FETCH_TARBALLS

This one has additional value "ALL".

Change-Id: Id804172eee899b443a6f8ae6bce8781136096dc7
This commit is contained in:
Michael Stahl 2014-03-10 23:42:26 +01:00
parent 727e2e7190
commit e3ba76406b
2 changed files with 3 additions and 3 deletions

View file

@ -174,7 +174,7 @@ cmd:
#
# Fetch
#
ifneq ($(DO_FETCH_TARBALLS),NO)
ifneq ($(DO_FETCH_TARBALLS),)
include $(SRCDIR)/Makefile.fetch
fetch: download
fetch: get-submodules

View file

@ -4785,11 +4785,11 @@ if test "$enable_fetch_external" != "no"; then
DO_FETCH_TARBALLS="ALL"
else
AC_MSG_RESULT(["yes, if we use them"])
DO_FETCH_TARBALLS="YES"
DO_FETCH_TARBALLS="TRUE"
fi
else
AC_MSG_RESULT([no])
DO_FETCH_TARBALLS="NO"
DO_FETCH_TARBALLS=
fi
AC_SUBST(DO_FETCH_TARBALLS)