diff options
author | Raul Infante-Sainz <infantesainz@gmail.com> | 2022-03-04 14:38:33 +0100 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2022-03-10 12:12:23 +0100 |
commit | c5d7f2adbea2038d240868e0192fb306256e3b92 (patch) | |
tree | 69ddc8e83558f86964e4a0fe774bb256e1c120bb /reproduce/analysis | |
parent | 470803eee43f63723ba41522a28efceef4aa0141 (diff) |
Bug fix: wrong definition of the prepare directory is corrected
Until now, the definition of the prepare directory was wrong (not in the
'analysis' directory of the build directory). I noticed this after an
update of the Maneage branch of one project that requires the prepare step.
With this commit, this problem has been fixed.
Diffstat (limited to 'reproduce/analysis')
-rw-r--r-- | reproduce/analysis/make/initialize.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reproduce/analysis/make/initialize.mk b/reproduce/analysis/make/initialize.mk index 4823e3a..5082657 100644 --- a/reproduce/analysis/make/initialize.mk +++ b/reproduce/analysis/make/initialize.mk @@ -43,7 +43,7 @@ bsdir=$(BDIR)/software texdir = $(badir)/tex lockdir = $(bsdir)/locks indir = $(badir)/inputs -prepdir = $(padir)/prepare +prepdir = $(badir)/prepare mtexdir = $(texdir)/macros installdir = $(bsdir)/installed bashdir = reproduce/analysis/bash |