82e678362f
svn path=/nixpkgs/trunk/; revision=4335
13 lines
227 B
Bash
13 lines
227 B
Bash
source $stdenv/setup
|
|
|
|
patchConfigure() {
|
|
# Clear the default library search path.
|
|
if test "$noSysDirs" = "1"; then
|
|
echo 'NATIVE_LIB_DIRS=' >> ld/configure.tgt
|
|
fi
|
|
}
|
|
|
|
preConfigure=patchConfigure
|
|
|
|
genericBuild
|