a5875f3c89
svn path=/nixpkgs/trunk/; revision=4976
17 lines
307 B
Bash
17 lines
307 B
Bash
source $stdenv/setup
|
|
|
|
buildPhase=buildPhase
|
|
buildPhase() {
|
|
glibc=$(cat $NIX_GCC/nix-support/orig-glibc)
|
|
# for i in bin/*; do
|
|
# patchelf --set-interpreter $glibc/lib/ld-linux.so.* $i
|
|
# done
|
|
}
|
|
|
|
installPhase=installPhase
|
|
installPhase() {
|
|
ensureDir $out
|
|
cp -prvd * $out/
|
|
}
|
|
|
|
genericBuild |