2006-10-18 00:07:10 +02:00
|
|
|
# glibc cannot have itself in its rpath.
|
|
|
|
export NIX_NO_SELF_RPATH=1
|
|
|
|
|
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
# Explicitly tell glibc to use our pwd, not /bin/pwd.
|
|
|
|
export PWD_P=$(type -tP pwd)
|
|
|
|
|
|
|
|
|
|
|
|
postUnpack() {
|
2009-06-24 22:10:51 +02:00
|
|
|
cd $sourceRoot/..
|
2006-10-18 00:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
preConfigure() {
|
|
|
|
|
|
|
|
for i in configure io/ftwtest-sh; do
|
|
|
|
substituteInPlace "$i" \
|
|
|
|
--replace "@PWD@" "pwd"
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir ../build
|
|
|
|
cd ../build
|
2009-06-24 22:10:51 +02:00
|
|
|
|
2006-10-18 00:07:10 +02:00
|
|
|
configureScript=../$sourceRoot/configure
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-25 13:06:44 +02:00
|
|
|
postConfigure() {
|
|
|
|
# Hack: get rid of the `-static' flag set by the bootstrap stdenv.
|
|
|
|
# This has to be done *after* `configure' because it builds some
|
|
|
|
# test binaries.
|
|
|
|
export NIX_CFLAGS_LINK=
|
|
|
|
export NIX_LDFLAGS_BEFORE=
|
2009-06-24 22:10:51 +02:00
|
|
|
export NIX_DONT_SET_RPATH=1
|
2006-10-25 13:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-18 00:07:10 +02:00
|
|
|
postInstall() {
|
|
|
|
if test -n "$installLocales"; then
|
2010-06-23 16:35:18 +02:00
|
|
|
make -j${NIX_BUILD_CORES:-1} -l${NIX_BUILD_CORES:-1} localedata/install-locales
|
2006-10-18 00:07:10 +02:00
|
|
|
fi
|
|
|
|
rm $out/etc/ld.so.cache
|
|
|
|
(cd $out/include && ln -s $kernelHeaders/include/* .) || exit 1
|
2006-10-28 12:17:08 +02:00
|
|
|
|
2007-05-24 15:33:23 +02:00
|
|
|
# Fix for NIXOS-54 (ldd not working on x86_64). Make a symlink
|
|
|
|
# "lib64" to "lib".
|
|
|
|
if test -n "$is64bit"; then
|
|
|
|
ln -s lib $out/lib64
|
|
|
|
fi
|
2006-10-18 00:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
genericBuild
|