diff options
author | Robert Nagy <robert@openbsd.org> | 2011-06-15 12:55:51 +0200 |
---|---|---|
committer | Robert Nagy <robert@openbsd.org> | 2011-06-15 12:55:51 +0200 |
commit | ba62ce46c8dbe300a5f8044cb7ffc59a19885502 (patch) | |
tree | 965dfc21457ac05b212a20244ca70121df8507a1 /Makefile.in | |
parent | 5e9bd7ecf191cd553e216d5378a50abe4ab653d2 (diff) |
only fetch external tarballs if --disable-fetch-external is not defined
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 37c138982756..ced0ed2bfe7f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -47,8 +47,12 @@ dmake/dmake@EXEEXT@: ./bootstrap src.downloaded: ooo.lst download +ifeq (@DO_FETCH_TARBALLS@,YES) @. ./*[Ee]nv.[Ss]et.sh && \ $$SRC_ROOT/download $$SRC_ROOT/ooo.lst && touch $@ +else + @echo "Automatic fetching of external tarballs is disabled." +endif fetch: src.downloaded |