Change tests/Makefile.am to put hamlibdatetime.h in the build directory to support parallel builds

pull/425/head
Michael Black W9MDB 2020-10-16 17:16:22 -05:00
rodzic c5ac5b2334
commit 892c2bd634
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -102,8 +102,8 @@ testloc.sh:
hamlibdatetime.h: FORCE
echo "SHA=$(SHA)"
test ! -x $(top_srcdir)/.git || echo "/* This date time is from the last non-merge commit to Hamlib. */" > $(srcdir)/hamlibdatetime.h
test ! -x $(top_srcdir)/.git || echo "#define HAMLIBDATETIME "\"$$(TZ=UTC git --git-dir=$(top_srcdir)/.git log --no-merges --date='format-local:%a %b %d %H:%M:%S %Y %z SHA=' --format='%cd' -n 1)$$(git --git-dir=$(top_srcdir)/.git log --no-merges | grep commit | head -n 1 | cut -c8-13)\" >> $(srcdir)/hamlibdatetime.h
test -f $(srcdir)/hamlibdatetime.h || cp $(srcdir)/hamlibdatetime.h.in $(srcdir)/hamlibdatetime.h
test ! -x $(top_srcdir)/.git || echo "#define HAMLIBDATETIME "\"$$(TZ=UTC git --git-dir=$(top_srcdir)/.git log --no-merges --date='format-local:%a %b %d %H:%M:%S %Y %z SHA=' --format='%cd' -n 1)$$(git --git-dir=$(top_srcdir)/.git log --no-merges | grep commit | head -n 1 | cut -c8-13)\" >> $(top_builddir)/tests//hamlibdatetime.h
test -f $(top_builddir)/tests/hamlibdatetime.h || cp $(top_builddir)/tests/hamlibdatetime.h.in $(top_builddir)/tests/hamlibdatetime.h
FORCE: ;