aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2023-05-15 17:22:01 +0200
committerLoïc Hoguin <[email protected]>2023-05-15 17:37:43 +0200
commit269544fe49269f3cf7b9f4eee3d3f9fab9975382 (patch)
tree5070c42b8a08702aee3387391b2306368504731a /test
parente8bcb0800363d781359ca3726d5825c3a05ed21d (diff)
downloaderlang.mk-269544fe49269f3cf7b9f4eee3d3f9fab9975382.tar.gz
erlang.mk-269544fe49269f3cf7b9f4eee3d3f9fab9975382.tar.bz2
erlang.mk-269544fe49269f3cf7b9f4eee3d3f9fab9975382.zip
Use $(CACHE_DIR)/git instead of $(CACHE_DIR)/gits
Diffstat (limited to 'test')
-rw-r--r--test/core_deps.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core_deps.mk b/test/core_deps.mk
index c4a943a..26ff4c3 100644
--- a/test/core_deps.mk
+++ b/test/core_deps.mk
@@ -129,13 +129,13 @@ core-deps-cache-git: init
$t test -d $(CACHE_DIR)
$i "Check that Cowlib was cloned in the cache"
- $t test -d $(CACHE_DIR)/gits/cowlib
+ $t test -d $(CACHE_DIR)/git/cowlib
$i "Distclean the application"
$t $(MAKE) -C $(APP) distclean $v
$i "Check that Cowlib is still in the cache"
- $t test -d $(CACHE_DIR)/gits/cowlib
+ $t test -d $(CACHE_DIR)/git/cowlib
$i "Break the Cowlib git link so we're forced to use the cache"
$t echo 'dep_cowlib = git bad_url master' >> $(APP)/Makefile
@@ -174,7 +174,7 @@ core-deps-cache-git-reuse: init
$t test -d $(CACHE_DIR)
$i "Check that Cowlib was cloned in the cache"
- $t test -d $(CACHE_DIR)/gits/cowlib
+ $t test -d $(CACHE_DIR)/git/cowlib
$i "Build the dependencies in $(APP)_2"
$t $(MAKE) -C $(APP)_2 deps $v