2005-10-02 20:48:08 +02:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
postBuild=postBuild
|
|
|
|
postBuild () {
|
|
|
|
find . -type f -perm +100 \
|
2006-10-27 14:43:32 +02:00
|
|
|
-exec patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
|
2005-10-02 20:48:08 +02:00
|
|
|
--set-rpath "$readline/lib:$ncurses/lib" {} \;
|
|
|
|
}
|
|
|
|
|
|
|
|
genericBuild
|