forked from mirrors/nixpkgs
first make all patchable files writable before patching, then change them back (yes, I've checked it, none of the files are writeable, so that all should go well :) )
svn path=/nixpkgs/branches/nixos-pkgs/; revision=1833
This commit is contained in:
parent
771534ece7
commit
fddd91238a
|
@ -2,4 +2,6 @@ $extra2/bin/chmod u+w $out/include
|
|||
(cd $out/include && $extra2/bin/ln -s $extra/include/* .) || exit 1
|
||||
|
||||
cd $out
|
||||
$extra3/bin/find . -not -type l -exec chmod u+w {} \;
|
||||
$extra3/bin/find . -exec $patchelf --interpreter $out/lib/ld-linux.so.2 --shrink-rpath {} \;
|
||||
$extra3/bin/find . -not -type l -exec chmod u-w {} \;
|
||||
|
|
Loading…
Reference in a new issue