b131d474c7
"start.o" to make it easier to use dietlibc as a drop-in replacement for glibc. svn path=/nixpkgs/trunk/; revision=6759
13 lines
205 B
Bash
13 lines
205 B
Bash
source $stdenv/setup
|
|
|
|
makeFlags="prefix=$out"
|
|
installFlags="prefix=$out"
|
|
|
|
postInstall=postInstall
|
|
postInstall() {
|
|
(cd $out && ln -s lib-* lib)
|
|
(cd $out/lib && ln -s start.o crt1.o)
|
|
}
|
|
|
|
genericBuild
|