6710a5e02f
svn path=/nixpkgs/trunk/; revision=9067
11 lines
253 B
Bash
11 lines
253 B
Bash
source $stdenv/setup
|
|
|
|
postBuild=postBuild
|
|
postBuild () {
|
|
find . -type f -perm +100 \
|
|
-exec patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
|
|
--set-rpath "$readline/lib:$ncurses/lib:$gmp/lib" {} \;
|
|
}
|
|
|
|
genericBuild
|