mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
4d905aa2ed
* Added an option to Adobe Reader to make it start faster (by deleting all the plugins). svn path=/nixpkgs/trunk/; revision=4406
14 lines
244 B
Bash
14 lines
244 B
Bash
source $stdenv/setup
|
|
|
|
myglibc=`cat ${NIX_GCC}/nix-support/orig-glibc`
|
|
echo "glibc: $myglibc"
|
|
|
|
postConfigure() {
|
|
cp $myglibc/lib/crt1.o src
|
|
cp $myglibc/lib/crti.o src
|
|
cp $myglibc/lib/crtn.o src
|
|
}
|
|
postConfigure=postConfigure
|
|
|
|
genericBuild
|