libseccomp: Fix RPATH

Ensure that bin/scmp_sys_resolver doesn't have $TMPDIR in its RPATH.

I can't reproduce the issue reported in
98edb24368 that required the addition of
a wrapper script. It seems to work fine without.
This commit is contained in:
Eelco Dolstra 2017-05-04 17:21:52 +02:00
parent 77fba4a112
commit d46e78ed0f
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE

View File

@ -15,9 +15,8 @@ stdenv.mkDerivation rec {
patchShebangs .
'';
postInstall = ''
wrapProgram $out/bin/scmp_sys_resolver --prefix LD_LIBRARY_PATH ":" $out/lib
'';
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
preFixup = "rm -rfv src";
meta = with stdenv.lib; {
description = "High level library for the Linux Kernel seccomp filter";
@ -27,4 +26,3 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}