aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make/initialize.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2019-04-12 01:01:02 +0100
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2019-04-12 01:01:02 +0100
commitc7ff75a5f0633d21860a91060a6c3a4fb64660b2 (patch)
tree8438edd38291966954b56775743ff99edbd6ee1e /reproduce/src/make/initialize.mk
parent4826db6fe54db2864d1a4f548ed8906590184456 (diff)
Configure script dealing properly with empty software directories
Until now, we hadn't actually tested the case where a whole software directory (Python modules in particular) is empty. So the configure script finished with some errors in this case. With this commit, this step of the configure script was modified to deal with such cases cleanly. Also, in `initialize.mk', I added a `-f' to the symbolic link command, so it doesn't complain if the file link already exists.
Diffstat (limited to 'reproduce/src/make/initialize.mk')
-rw-r--r--reproduce/src/make/initialize.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/reproduce/src/make/initialize.mk b/reproduce/src/make/initialize.mk
index 3c272d8..286e64e 100644
--- a/reproduce/src/make/initialize.mk
+++ b/reproduce/src/make/initialize.mk
@@ -162,7 +162,7 @@ export MPI_PYTHON3_SITEARCH :=
.SUFFIXES:
$(lockdir): | $(BDIR); mkdir $@
$(texbdir): | $(texdir); mkdir $@
-$(tikzdir): | $(texbdir); mkdir $@ && ln -s $(tikzdir) tex/tikz
+$(tikzdir): | $(texbdir); mkdir $@ && ln -fs $@ tex/tikz