forked from lix-project/lix
bd013b6f98
I was bitten one time too many by Python modifying the Nix store by creating *.pyc files when run as root. On Linux, we can prevent this by setting the immutable bit on files and directories (as in ‘chattr +i’). This isn't supported by all filesystems, so it's not an error if setting the bit fails. The immutable bit is cleared by the garbage collector before deleting a path. The only tricky aspect is in optimiseStore(), since it's forbidden to create hard links to an immutable file. Thus optimiseStore() temporarily clears the immutable bit before creating the link.
17 lines
447 B
Makefile
17 lines
447 B
Makefile
pkglib_LTLIBRARIES = libutil.la
|
|
|
|
libutil_la_SOURCES = util.cc hash.cc serialise.cc \
|
|
archive.cc xml-writer.cc immutable.cc
|
|
|
|
libutil_la_LIBADD = ../boost/format/libformat.la ${aterm_lib} ${sqlite_lib}
|
|
|
|
pkginclude_HEADERS = util.hh hash.hh serialise.hh \
|
|
archive.hh xml-writer.hh types.hh immutable.hh
|
|
|
|
if !HAVE_OPENSSL
|
|
libutil_la_SOURCES += \
|
|
md5.c md5.h sha1.c sha1.h sha256.c sha256.h md32_common.h
|
|
endif
|
|
|
|
AM_CXXFLAGS = -Wall -I$(srcdir)/..
|