diff options
author | Tomas Chvatal <tchvatal@suse.cz> | 2011-11-29 11:04:16 +0100 |
---|---|---|
committer | Tomas Chvatal <tchvatal@suse.cz> | 2011-11-29 11:04:37 +0100 |
commit | a43caa76d9da112f40a973911e779fc42c5af3c3 (patch) | |
tree | a4da3efa8c3151c3370c393edfb61bcfe005890c /configure.in | |
parent | 4585c3953eda4f8d491b362966bc65b4dfce96d6 (diff) |
Add checking msg for tarball fetching so we know if it is on/off
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 4bb2f1ff25ae..d925ba4720ee 100644 --- a/configure.in +++ b/configure.in @@ -2547,8 +2547,12 @@ if test -z "$TARFILE_LOCATION"; then fi AC_SUBST(TARFILE_LOCATION) +AC_MSG_CHECKING([whether we want to fetch tarballs]) if test "z$enable_fetch_external" != "zno" ; then + AC_MSG_RESULT([yes]) DO_FETCH_TARBALLS="YES" +else + AC_MSG_RESULT([no]) fi AC_SUBST(DO_FETCH_TARBALLS) |