Skip to content

Commit b788956

Browse files
committedJun 26, 2017
libcgroup: do not set suid bit in nix store
1 parent 994998e commit b788956

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎pkgs/os-specific/linux/libcgroup/default.nix

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
1111

1212
buildInputs = [ pam yacc flex ];
1313

14+
postPatch = ''
15+
substituteInPlace src/tools/Makefile.in \
16+
--replace 'chmod u+s' 'chmod +x'
17+
'';
18+
1419
meta = {
1520
description = "Library and tools to manage Linux cgroups";
1621
homepage = "http://libcg.sourceforge.net/";

0 commit comments

Comments
 (0)
Please sign in to comment.