~ruther/guix-local

5a5fc61f072eaa7fe9bfa65dbbd4c6215d88626c — Ludovic Courtès 9 years ago fa54f44
build: Fix .service and .conf targets for VPATH builds.

* nix/local.mk (etc/guix-%.service, etc/guix-%.conf): Use "$<", not
"$(srcdir)/$<".
1 files changed, 6 insertions(+), 6 deletions(-)

M nix/local.mk
M nix/local.mk => nix/local.mk +6 -6
@@ 189,9 189,9 @@ nodist_systemdservice_DATA = etc/guix-daemon.service etc/guix-publish.service

etc/guix-%.service: etc/guix-%.service.in	\
			 $(top_builddir)/config.status
	$(AM_V_GEN)$(MKDIR_P) "`dirname $@`";				\
	$(SED) -e 's|@''bindir''@|$(bindir)|' <				\
	       "$(srcdir)/$<" > "$@.tmp";	\
	$(AM_V_GEN)$(MKDIR_P) "`dirname $@`";	\
	$(SED) -e 's|@''bindir''@|$(bindir)|' <	\
	       "$<" > "$@.tmp";		\
	mv "$@.tmp" "$@"

# The '.conf' jobs for Upstart.


@@ 200,9 200,9 @@ nodist_upstartjob_DATA = etc/guix-daemon.conf etc/guix-publish.conf

etc/guix-%.conf: etc/guix-%.conf.in	\
			 $(top_builddir)/config.status
	$(AM_V_GEN)$(MKDIR_P) "`dirname $@`";				\
	$(SED) -e 's|@''bindir''@|$(bindir)|' <				\
	       "$(srcdir)/$<" > "$@.tmp";		\
	$(AM_V_GEN)$(MKDIR_P) "`dirname $@`";	\
	$(SED) -e 's|@''bindir''@|$(bindir)|' <	\
	       "$<" > "$@.tmp";		\
	mv "$@.tmp" "$@"

EXTRA_DIST +=					\