From 9f0efa6611d010bf2fb88a2f6a583c4f32fd89ac Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 6 Dec 2006 01:24:02 +0000 Subject: * Start of the setuid helper (the program that performs the operations that have to be done as root: running builders under different uids, changing ownership of build results, and deleting paths in the store with the wrong ownership). --- src/nix-setuid-helper/Makefile.am | 8 ++++++++ src/nix-setuid-helper/main.cc | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 src/nix-setuid-helper/Makefile.am create mode 100644 src/nix-setuid-helper/main.cc (limited to 'src/nix-setuid-helper') diff --git a/src/nix-setuid-helper/Makefile.am b/src/nix-setuid-helper/Makefile.am new file mode 100644 index 000000000000..afff2bde7c13 --- /dev/null +++ b/src/nix-setuid-helper/Makefile.am @@ -0,0 +1,8 @@ +libexec_PROGRAMS = nix-setuid-helper + +nix_setuid_helper_SOURCES = main.cc +nix_setuid_helper_LDADD = ../libutil/libutil.la \ + ../boost/format/libformat.la ${aterm_lib} + +AM_CXXFLAGS = \ + -I$(srcdir)/.. $(aterm_include) -I$(srcdir)/../libutil diff --git a/src/nix-setuid-helper/main.cc b/src/nix-setuid-helper/main.cc new file mode 100644 index 000000000000..ff70fa6560a8 --- /dev/null +++ b/src/nix-setuid-helper/main.cc @@ -0,0 +1,3 @@ +int main(int argc, char * * argv) +{ +} -- cgit 1.4.1