diff options
author | davilla <davilla@4pi.com> | 2013-06-13 12:08:42 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2013-06-13 12:09:00 -0400 |
commit | 6763ab95078b4d0be46e7eae13e916853d8d12a0 (patch) | |
tree | 46526c0717e3278a1e4fe342cf757fdc9419efc9 | |
parent | 2d54b5ca139ffe4dfe0dacd270c8d60aadb23923 (diff) |
fixed, when compiling for native, tarball was saved in wrong place
-rw-r--r-- | tools/depends/native/tar-native/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/native/tar-native/Makefile b/tools/depends/native/tar-native/Makefile index c0ea279c12..7984fbc3d2 100644 --- a/tools/depends/native/tar-native/Makefile +++ b/tools/depends/native/tar-native/Makefile @@ -20,7 +20,7 @@ APPBIN=$(PREFIX)/bin/tar all: .installed-$(PLATFORM) $(TARBALLS_LOCATION)/$(ARCHIVE): - $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) + cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) -rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM) |