Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpotts committed Dec 18, 2024
1 parent 2dcff81 commit e7d8579
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -262,12 +262,13 @@ install-arrow:
ifeq (,$(wildcard ${DEP_BUILD_DIR}/arrow-apache-arrow*))
cd $(DEP_BUILD_DIR) && wget $(ARROW_SOURCE_LINK) && tar -xvf $(ARROW_NAME_VER).tar.gz
# If the tar.gz file exists, unzip it
else ifeq (,$(wildcard ${DEP_BUILD_DIR}/$(ARROW_NAME_VER).tar.gz))
else ifneq (,$(wildcard ${DEP_BUILD_DIR}/$(ARROW_NAME_VER).tar.gz))
cd $(DEP_BUILD_DIR) && tar -xvf $(ARROW_NAME_VER).tar.gz
endif

mkdir -p $(ARROW_BUILD_DIR)/cpp/build-release

# if DOWNLOAD_ARROW_DEPS=true
ifeq ($(DOWNLOAD_ARROW_DEPS),$(filter $(DOWNLOAD_ARROW_DEPS), true))
rm -fr $(DEP_BUILD_DIR)/arrow_exports.sh
mkdir -p $(ARROW_DEP_DIR)
Expand Down

0 comments on commit e7d8579

Please sign in to comment.