diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-03-14 22:26:07 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-03-14 22:26:07 +0000 |
commit | 1e6f50c7c7f9202114be4e300807623ddbf77255 (patch) | |
tree | ea38d746c46257509464ee3b0e72fc6bf31ab455 /Makefile | |
parent | a32717268571cbe55c00576e32983693e06daf21 (diff) | |
download | s6-linux-init-1e6f50c7c7f9202114be4e300807623ddbf77255.tar.xz |
Fix update/global-links dependencies
Empty env in stage 1, add option to dump it somewhere
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -89,9 +89,11 @@ install-data: $(ALL_DATA:src/etc/%=$(DESTDIR)$(datadir)/%) ifneq ($(exthome),) -update: +$(DESTDIR)$(exthome): $(home) exec $(INSTALL) -l $(notdir $(home)) $(DESTDIR)$(exthome) +update: $(DESTDIR)$(exthome) + global-links: $(DESTDIR)$(exthome) $(SHARED_LIBS:lib%.so.xyzzy=$(DESTDIR)$(sproot)/library.so/lib%.so.$(version_M)) $(BIN_TARGETS:%=$(DESTDIR)$(sproot)/command/%) $(SBIN_TARGETS:%=$(DESTDIR)$(sproot)/command/%) $(DESTDIR)$(sproot)/command/%: $(DESTDIR)$(home)/command/% |