diff options
author | davilla <davilla@4pi.com> | 2012-09-09 12:37:02 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2012-09-09 12:37:22 -0400 |
commit | d07894d2ff1e52947d9619993c8f4f3fb728dfc8 (patch) | |
tree | 3d555f5acd721a3ad836e3e0271375dfa890b3d6 /tools | |
parent | 14c7976ca034ebcc86727110d712a9c33f12535f (diff) |
[darwin] switch back to pulling tarball from mirrors in case upstream vanishes
Diffstat (limited to 'tools')
-rw-r--r-- | tools/darwin/depends/librtmp/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/darwin/depends/librtmp/Makefile b/tools/darwin/depends/librtmp/Makefile index 200e838a6a..5b93d7c578 100644 --- a/tools/darwin/depends/librtmp/Makefile +++ b/tools/darwin/depends/librtmp/Makefile @@ -14,8 +14,9 @@ LIBDYLIB=$(SOURCE)/.libs/$(LIBNAME).dylib all: $(LIBDYLIB) .installed $(TARBALLS_LOCATION)/$(ARCHIVE): - git clone git://git.ffmpeg.org/rtmpdump $(SOURCE) - cd $(SOURCE); git archive --format=tar --prefix=$(SOURCE)/ $(VERSION) | gzip -9 > $(TARBALLS_LOCATION)/$(ARCHIVE) + $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) + #git clone git://git.ffmpeg.org/rtmpdump $(SOURCE) + #cd $(SOURCE); git archive --format=tar --prefix=$(SOURCE)/ $(VERSION) | gzip -9 > $(TARBALLS_LOCATION)/$(ARCHIVE) $(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE) rm -rf $(SOURCE) |