* Symlink propagated-user-env-packages to
propagated-build-native-inputs rather than propagated-build-inputs. svn path=/nixpkgs/trunk/; revision=19878
This commit is contained in:
parent
b0376d16a2
commit
6478e92556
|
@ -29,12 +29,14 @@ preConfigure() {
|
||||||
}
|
}
|
||||||
|
|
||||||
postFixup() {
|
postFixup() {
|
||||||
|
echo FIXUP
|
||||||
|
|
||||||
# If a user installs a Perl package, she probably also wants its
|
# If a user installs a Perl package, she probably also wants its
|
||||||
# dependencies in the user environment (since Perl modules don't
|
# dependencies in the user environment (since Perl modules don't
|
||||||
# have something like an RPATH, so the only way to find the
|
# have something like an RPATH, so the only way to find the
|
||||||
# dependencies is to have them in the PERL5LIB variable).
|
# dependencies is to have them in the PERL5LIB variable).
|
||||||
if test -e $out/nix-support/propagated-build-inputs; then
|
if test -e $out/nix-support/propagated-build-native-inputs; then
|
||||||
ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages
|
ln -s $out/nix-support/propagated-build-native-inputs $out/nix-support/propagated-user-env-packages
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue