diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-09-18T11·01+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-09-18T11·01+0000 |
commit | df05a759e4b73058ade82b6008c405cc5c75b104 (patch) | |
tree | a17d1d17b3323c6c85edc1078eb4d3c094a28dcc /Makefile.am | |
parent | d3de71efc935ac5744dedf22528a6f0c4e38aaf4 (diff) |
* In "make init-state", ignore errors creating /nix/store. Hack to
get the Debian VM builds to work (where /nix/store is a mount point containing the store of the host).
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e8c01a399fa7..c3f79193a05e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,7 +33,7 @@ init-state: $(INSTALL) $(INIT_FLAGS) $(GROUP_WRITABLE) -d $(DESTDIR)$(localstatedir)/nix/gcroots/channels ln -sfn $(localstatedir)/nix/profiles $(DESTDIR)$(localstatedir)/nix/gcroots/profiles $(INSTALL) $(INIT_FLAGS) -d $(DESTDIR)$(localstatedir)/nix/userpool - $(INSTALL) $(INIT_FLAGS) -m 1777 -d $(DESTDIR)$(storedir) + -$(INSTALL) $(INIT_FLAGS) -m 1777 -d $(DESTDIR)$(storedir) $(INSTALL) $(INIT_FLAGS) $(GROUP_WRITABLE) -d $(DESTDIR)$(localstatedir)/nix/manifests ln -sfn $(localstatedir)/nix/manifests $(DESTDIR)$(localstatedir)/nix/gcroots/manifests |