Skip to content

Commit a51d5e9

Browse files
committed
Remove auto-cloning of Phobos on start
1 parent 6692bbe commit a51d5e9

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

posix.mak

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -178,21 +178,6 @@ DMD_LATEST=$(DMD_LATEST_DIR)/generated/$(OS)/release/$(MODEL)/dmd
178178
DRUNTIME_LATEST_DIR=$G/druntime-${LATEST}
179179
PHOBOS_LATEST_DIR=$G/phobos-${LATEST}
180180

181-
# Auto-cloning missing directories
182-
$(shell [ ! -d $(DMD_DIR) ] && git clone --depth=1 ${GIT_HOME}/dmd $(DMD_DIR))
183-
$(shell [ ! -d $(DRUNTIME_DIR) ] && git clone --depth=1 ${GIT_HOME}/druntime $(DRUNTIME_DIR))
184-
185-
################################################################################
186-
# Automatically clone Phobos
187-
PHOBOS_FILES := $(shell find $(PHOBOS_DIR) -name '*.d' -o -name '*.mak' -o -name '*.ddoc')
188-
ifndef RELEASE
189-
# TODO: should be replaced by make targets
190-
$(shell [ ! -d $(PHOBOS_DIR) ] && git clone --depth=1 ${GIT_HOME}/phobos $(PHOBOS_DIR))
191-
$(shell [ ! -d $(PHOBOS_LATEST_DIR) ] && git clone -b v${LATEST} --depth=1 ${GIT_HOME}/phobos $(PHOBOS_LATEST_DIR))
192-
PHOBOS_LATEST_FILES := $(shell find $(PHOBOS_LATEST_DIR) -name '*.d' -o -name '*.mak' -o -name '*.ddoc')
193-
endif
194-
################################################################################
195-
196181
# stable dub and dmd versions used to build dpl-docs
197182
STABLE_DMD_VER=2.078.2
198183
STABLE_DMD_ROOT=$(GENERATED)/stable_dmd-$(STABLE_DMD_VER)

0 commit comments

Comments
 (0)