mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
vlock: Don't try to install setuid binary
With newer Nix it's (fortunately) no longer possible to create a file
with setuid bits, even though the permissions are fixed later the build
will fail during installPhase already.
I've verified whether the contents of the output path are the same as
before this change and the contents match.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
(cherry picked from commit 4007ee974c)
This commit is contained in:
@@ -9,7 +9,9 @@ stdenv.mkDerivation {
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
sed -i -e '/INSTALL/s/-[og] [^ ]*//g' Makefile modules/Makefile
|
||||
sed -i -e '/INSTALL/ {
|
||||
s/-[og] [^ ]*//g; s/4711/755/
|
||||
}' Makefile modules/Makefile
|
||||
'';
|
||||
|
||||
patches = [ ./eintr.patch ];
|
||||
|
||||
Reference in New Issue
Block a user