1c1ad8b285
svn path=/nixpkgs/trunk/; revision=6054
22 lines
384 B
Bash
22 lines
384 B
Bash
source $stdenv/setup
|
|
|
|
configureFlags=" --disable-nls --disable-shared --enable-static"
|
|
makeFlags="LDFLAGS=-all-static"
|
|
|
|
patchConfigure() {
|
|
# Clear the default library search path.
|
|
if test "$noSysDirs" = "1"; then
|
|
echo 'NATIVE_LIB_DIRS=' >> ld/configure.tgt
|
|
fi
|
|
}
|
|
|
|
preConfigure=patchConfigure
|
|
|
|
preBuild() {
|
|
make configure-host
|
|
}
|
|
|
|
preBuild=preBuild
|
|
|
|
genericBuild
|