build: Add -C arguments to some git invocations
This moves the build system a little closer towards being safe for builddir ≠ srcdir. Signed-off-by: Philip Withnall <withnall@endlessm.com> Closes: #832 Approved by: cgwalters
This commit is contained in:
parent
6eac575f21
commit
50f73cbac3
|
|
@ -19,7 +19,7 @@ include Makefile-decls.am
|
|||
|
||||
shortened_sysconfdir = $$(echo "$(sysconfdir)" | sed -e 's|^$(prefix)||' -e 's|^/||')
|
||||
|
||||
OSTREE_GITREV=$(shell if command -v git >/dev/null 2>&1 && test -d $(srcdir)/.git; then git describe --abbrev=42 --tags --always HEAD; fi)
|
||||
OSTREE_GITREV=$(shell if command -v git >/dev/null 2>&1 && test -d $(srcdir)/.git; then git -C $(srcdir) describe --abbrev=42 --tags --always HEAD; fi)
|
||||
|
||||
ACLOCAL_AMFLAGS = -I buildutil -I libglnx ${ACLOCAL_FLAGS}
|
||||
AM_CPPFLAGS += -DDATADIR='"$(datadir)"' -DLIBEXECDIR='"$(libexecdir)"' \
|
||||
|
|
@ -113,11 +113,11 @@ include Makefile-boot.am
|
|||
include Makefile-man.am
|
||||
|
||||
release-tag:
|
||||
git tag -m "Release $(VERSION)" v$(VERSION)
|
||||
git -C $(srcdir) tag -m "Release $(VERSION)" v$(VERSION)
|
||||
|
||||
embed_dependency=tar -C $(srcdir) --append --exclude='.git/*' --transform="s,^embedded-dependencies/,ostree-embeddeps-$${GITVERSION}/embedded-dependencies/," --file=$${TARFILE_TMP}
|
||||
|
||||
git_version_rpm = $$(git describe | sed -e 's,-,\.,g' -e 's,^v,,')
|
||||
git_version_rpm = $$(git -C $(srcdir) describe | sed -e 's,-,\.,g' -e 's,^v,,')
|
||||
|
||||
release-tarball-embedded:
|
||||
set -x; \
|
||||
|
|
|
|||
Loading…
Reference in New Issue