diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-07-23 22:12:23 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-07-23 23:05:21 -0400 |
commit | 0d4bb8b94e37e73f5c163eab267865824e8f912f (patch) | |
tree | 21f8bf6781eb44c0254abcdaafdcee1c060847d3 /build-aux | |
parent | f28b95a3f9c991c584025b033ea94a14ed113b95 (diff) |
fixity
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/Makefile.each.tail/20-systemd.mk | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/build-aux/Makefile.each.tail/20-systemd.mk b/build-aux/Makefile.each.tail/20-systemd.mk index dfb8fa5b06..8b84b52b63 100644 --- a/build-aux/Makefile.each.tail/20-systemd.mk +++ b/build-aux/Makefile.each.tail/20-systemd.mk @@ -52,8 +52,21 @@ $(addprefix $(outdir)/,$(foreach d,$(am.bindirs),$($d_PROGRAMS))): $(outdir)/%: @if test $(words $^) = 0; then echo 'Cannot link executable with no dependencies: $@' >&2; exit 1; fi $(AM_V_CCLD)$(LINK) $(_systemd.link_files) +$(DESTDIR)$(bindir)/%: $(outdir)/% + $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $< $@ +$(DESTDIR)$(rootbindir)/%: $(outdir)/% + $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $< $@ +$(DESTDIR)$(libexecdir)/%: $(outdir)/% + $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $< $@ +$(DESTDIR)$(rootlibexecdir)/%: $(outdir)/% + $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $< $@ +$(DESTDIR)$(systemgeneratordir)/%: $(outdir)/% + $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $< $@ +$(DESTDIR)$(udevlibexecdir)/%: $(outdir)/% + $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $< $@ + $(DESTDIR)$(libdir)/%.la: $(outdir)/%.la - $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $< $(@D) + $(LIBTOOL) $(ALL_LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $< $@ $(outdir)/%-from-name.gperf: $(outdir)/%-list.txt $(AM_V_at)$(MKDIR_P) $(dir $@) |