Skip to content

Commit

Permalink
fix bug in arrow-download-source
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpotts committed Jan 6, 2025
1 parent 5c4f359 commit 3057779
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ arrow-download-source:

# if the arrow dependency directory is empty of tar.gz, download the dependencies
ifeq (,$(wildcard $(ARROW_DEP_DIR)/*.tar.gz))
rm -fr $(DEP_BUILD_DIR)/arrow_exports.sh
rm -fr $(ARROW_DEP_DIR)/arrow_exports.sh
mkdir -p $(ARROW_DEP_DIR)
cd $(ARROW_BUILD_DIR)/cpp/thirdparty/ && ./download_dependencies.sh $(ARROW_DEP_DIR) > $(DEP_BUILD_DIR)/arrow_exports.sh
cd $(ARROW_BUILD_DIR)/cpp/thirdparty/ && ./download_dependencies.sh $(ARROW_DEP_DIR) > $(ARROW_DEP_DIR)/arrow_exports.sh
endif

rm -fr $(ARROW_BUILD_DIR)
Expand Down

0 comments on commit 3057779

Please sign in to comment.