diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 7e386f84c567..f50351b05b67 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,6 @@ SUBDIRS = externals src scripts corepkgs doc misc tests -EXTRA_DIST = substitute.mk nix.spec nix.spec.in bootstrap.sh svn-revision +EXTRA_DIST = substitute.mk nix.spec nix.spec.in bootstrap.sh \ + svn-revision nix.conf.example include ./substitute.mk @@ -12,6 +13,11 @@ relname: echo -n $(distdir) > relname install-data-local: init-state + $(INSTALL) -d $(DESTDIR)$(sysconfdir)/nix + $(INSTALL_DATA) nix.conf.example $(DESTDIR)$(sysconfdir)/nix + if ! test -e $(DESTDIR)$(sysconfdir)/nix/nix.conf; then \ + $(INSTALL_DATA) nix.conf.example $(DESTDIR)$(sysconfdir)/nix/nix.conf; \ + fi if INIT_STATE if SETUID_HACK |