diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-01-24 10:39:05 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-01-24 10:39:05 +0000 |
commit | 90fc8ad3c38bbf87ca4514db456c34c2196cfce9 (patch) | |
tree | 733f901b28c61a9f88f7564a5ac57f21b2c066a4 /reproduce/src/make | |
parent | 0f97f15a8d183c6b14894f47c40968e92104181d (diff) |
Updated fork of metastore allows building on macOS
I recently found another fork of metastore that allows its build on macOS
systems (https://github.com/mpctx/metastore). So I forked it into my own
fork with several other corrections (mostly cosmetic!), so it is now much
better suited for this pipeline.
Raul Infante-Sainz has already tested the building of metastore on his
macOS. In a previous test, we also noticed that libbsd should not be built
on Mac systems, so it is now a conditional prerequisite to metastore.
Diffstat (limited to 'reproduce/src/make')
-rw-r--r-- | reproduce/src/make/dependencies.mk | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/reproduce/src/make/dependencies.mk b/reproduce/src/make/dependencies.mk index 1cc2b00..4610226 100644 --- a/reproduce/src/make/dependencies.mk +++ b/reproduce/src/make/dependencies.mk @@ -354,10 +354,26 @@ $(ibdir)/git: $(tdir)/git-$(git-version).tar.xz \ --without-tcltk --with-shell=$(ibdir)/bash, \ V=1) -# Metastore is used to keep file modification dates (and generally many -# meta-data) within the Git history. +# Metastore is used (through a Git hook) to restore the source modification +# dates of files after a Git checkout. Another Git hook saves all file +# metadata just before a commit (to allow restoration after a +# checkout). Since this pipeline is managed in Makefiles, file modification +# dates are critical to not having to redo the whole analysis after +# checking out between branches. +# +# Note that we aren't using the standard version of Metastore, but a fork +# of it that is maintained in this repository: +# https://gitlab.com/makhlaghi/metastore-fork +# +# Libbsd is not necessary on macOS systems, because macOS is already a +# BSD-based distribution. But on GNU/Linux systems, it is necessary. +ifeq ($(on_mac_os),yes) +needlibbsd = +else +needlibbsd = $(ilidir)/libbsd +endif $(ibdir)/metastore: $(tdir)/metastore-$(metastore-version).tar.gz \ - $(ilidir)/libbsd \ + $(needlibbsd) \ $(ibdir)/git # The build command below will change the current directory of this |