diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-29 20:37:57 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-29 20:37:57 +0000 |
commit | a769f01c38dc47b39d6e49b16c6d922a2434cfd2 (patch) | |
tree | 92c0e7ebffd055adb997e3b7144d8e4d37dfdff7 /reproduce | |
parent | 68325e63c51e3d5e569b2a14c90582f7b075dc23 (diff) |
Remove extra lockdir target in download.mk
There was an extra `$(lockdir)' target in `download.mk'. This has been
corrected.
Diffstat (limited to 'reproduce')
-rw-r--r-- | reproduce/src/make/download.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reproduce/src/make/download.mk b/reproduce/src/make/download.mk index bc6d4cd..332392b 100644 --- a/reproduce/src/make/download.mk +++ b/reproduce/src/make/download.mk @@ -51,7 +51,7 @@ # series. We thus use the `flock' program to tie/lock the downloading # process with a file and make sure that only one downloading event is in # progress at every moment. -$(indir) $(lockdir):; mkdir $@ +$(indir):; mkdir $@ inputdatasets = $(foreach i, wfpc2, $(indir)/$(i).fits) $(inputdatasets): $(indir)/%.fits: | $(indir) $(lockdir) |