1328aa3307
roots to a per-process temporary file in /nix/var/nix/temproots while holding a write lock on that file. The garbage collector acquires read locks on all those files, thus blocking further progress in other Nix processes, and reads the sets of temporary roots.
41 lines
1.4 KiB
Makefile
41 lines
1.4 KiB
Makefile
SUBDIRS = externals src scripts corepkgs doc misc tests
|
|
EXTRA_DIST = substitute.mk nix.spec nix.spec.in bootstrap.sh svn-revision
|
|
|
|
include ./substitute.mk
|
|
|
|
nix.spec: nix.spec.in
|
|
|
|
rpm: nix.spec dist
|
|
rpm $(EXTRA_RPM_FLAGS) -ta $(distdir).tar.gz
|
|
|
|
relname:
|
|
echo -n $(distdir) > relname
|
|
|
|
install-data-local: init-state
|
|
|
|
if INIT_STATE
|
|
if SETUID_HACK
|
|
INIT_FLAGS = -g @NIX_GROUP@ -o @NIX_USER@
|
|
GROUP_WRITABLE = -m 775
|
|
endif
|
|
init-state:
|
|
$(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(localstatedir)/nix
|
|
$(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(localstatedir)/nix/db
|
|
$(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(localstatedir)/log/nix
|
|
$(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(localstatedir)/nix/profiles
|
|
$(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(localstatedir)/nix/gcroots
|
|
$(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(localstatedir)/nix/temproots
|
|
$(INSTALL) $(INIT_FLAGS) $(GROUP_WRITABLE) -d $(DESTDIR)$(localstatedir)/nix/gcroots/tmp
|
|
$(INSTALL) $(INIT_FLAGS) $(GROUP_WRITABLE) -d $(DESTDIR)$(localstatedir)/nix/gcroots/channels
|
|
rm -f $(DESTDIR)$(localstatedir)/nix/gcroots/profiles
|
|
ln -s $(localstatedir)/nix/profiles $(DESTDIR)$(localstatedir)/nix/gcroots/profiles
|
|
$(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(prefix)/store
|
|
$(INSTALL) $(INIT_FLAGS) $(GROUP_WRITABLE) -d $(DESTDIR)$(localstatedir)/nix/manifests
|
|
# $(bindir)/nix-store --init
|
|
else
|
|
init-state:
|
|
endif
|
|
|
|
svn-revision:
|
|
svnversion . > svn-revision
|