Install libraries to $out/lib instead of $out/lib64
This should fix a lot of builds svn path=/nixpkgs/trunk/; revision=21393
This commit is contained in:
parent
415f0fdc9f
commit
d5601ee60e
@ -18,13 +18,13 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
configureScript = "./config";
|
||||
|
||||
configureFlags = "shared";
|
||||
configureFlags="--libdir=lib shared";
|
||||
|
||||
crossAttrs = {
|
||||
configurePhase = ''
|
||||
preConfigure=''
|
||||
export cross=$crossSystem-
|
||||
./Configure --prefix=$out ${opensslCrossSystem} shared
|
||||
'';
|
||||
configureFlags="--libdir=lib ${opensslCrossSystem} shared";
|
||||
buildPhase = ''
|
||||
make CC=$crossConfig-gcc \
|
||||
AR="$crossConfig-ar r" \
|
||||
|
Loading…
Reference in New Issue
Block a user