[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: statedir locations
From: |
Ludovic Courtès |
Subject: |
Re: statedir locations |
Date: |
Tue, 28 Jan 2014 10:23:16 +0100 |
User-agent: |
Gnus/5.130007 (Ma Gnus v0.7) Emacs/24.3 (gnu/linux) |
address@hidden (Ludovic Courtès) skribis:
> address@hidden (Ludovic Courtès) skribis:
>
>> John Darrington <address@hidden> skribis:
>>
>>> It has come to my attention that guix packages (at least those with gnu
>>> build system)
>>> default their statedirs to directories under /nix/store/. Recall that the
>>> statedirs (ie:
>>> sharedstatedir localstatedir and runstatedir) are for installing data files
>>> *which the programs
>>> modify while they run* [1]. Obviously a program cannot modify anything
>>> under /nix/store
>>> I think we need to update the default configure flags.
>>
>> Yes. We actually have a number of local modifications:
>>
>> $ grep -e --localstatedir gnu/packages/*.scm | wc -l
>> 5
>>
>> I think we should change gnu-build-system.scm to pass
>> --localstatedir=/var, unless ‘configure-flags’ specify another setting.
>>
>> I’ll do that in ‘core-updates’.
>
> Done in 65529e49ff5b9052544271b1b7923feed4312849.
I was overconfident: the patch broke everything, because
Automake-generated makefiles typically try to mkdir $localstatedir:
http://hydra.gnu.org/eval/45514
So I just reverted it, and I think we’re stuck with the status quo until
someone has a better idea.
For the longer term, we could submit an Automake patch such that it
doesn’t insist on creating $localstatedir et al.
Ludo’.