aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-12-12 21:53:33 -0500
committerGravatar Jason Gross <jgross@mit.edu>2017-12-12 21:53:33 -0500
commit1536326649f2f9e47502332b7b0caaff7ebc153b (patch)
treed9e69c91a3d1566f4fb915455bd0f687169f6b1d /Makefile
parent69001f6326d6e5e8e04029f99041ca54d3a80d4f (diff)
Fix call to ln -s
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 027e9f105..754ae3f34 100644
--- a/Makefile
+++ b/Makefile
@@ -156,7 +156,7 @@ src/Specific/.autgenerated-deps:
.PHONY: fast-autogenerated-deps
fast-autogenerated-deps: src/Specific/.autgenerated-deps
$(SHOW)'CP .v.d'
- $(HIDE)for i in $(REAL_SPECIFIC_GENERATED_VOFILES:.vo=.v.d); do rm -f $$i; ln -s src/Specific/.autgenerated-deps $$i; done
+ $(HIDE)for i in $(REAL_SPECIFIC_GENERATED_VOFILES:.vo=.v.d); do rm -f $$i; ln -s "$(shell cd src/Specific && pwd)/.autgenerated-deps" $$i; done
ifneq ($(filter fast-autogenerated-deps,$(MAKECMDGOALS)),)
$(REAL_SPECIFIC_GENERATED_VOFILES:.vo=.v.d): fast-autogenerated-deps