mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
build: Fix instantiation of 'guix-daemon.service' when builddir != srcdir.
* daemon.am (etc/guix-daemon.service): Add $(MKDIR_P) invocation. Add $(srcdir) when referring to the source file.
This commit is contained in:
parent
54faf17440
commit
f262f9f52d
1 changed files with 3 additions and 2 deletions
|
@ -186,8 +186,9 @@ nodist_systemdservice_DATA = etc/guix-daemon.service
|
|||
|
||||
etc/guix-daemon.service: etc/guix-daemon.service.in \
|
||||
$(top_builddir)/config.status
|
||||
$(SED) -e 's|@''bindir''@|$(bindir)|' < \
|
||||
"etc/guix-daemon.service.in" > "$@.tmp"
|
||||
$(MKDIR_P) "`dirname "$@"`"
|
||||
$(SED) -e 's|@''bindir''@|$(bindir)|' < \
|
||||
"$(srcdir)/etc/guix-daemon.service.in" > "$@.tmp"
|
||||
mv "$@.tmp" "$@"
|
||||
|
||||
EXTRA_DIST += \
|
||||
|
|
Loading…
Reference in a new issue