bibutils: fix cross compilation
This commit is contained in:
parent
cc0257d063
commit
54466394ca
1 changed files with 9 additions and 0 deletions
|
@ -18,13 +18,22 @@ stdenv.mkDerivation rec {
|
||||||
--replace '-Wl,-soname,$(SONAME)' ""
|
--replace '-Wl,-soname,$(SONAME)' ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# the configure script is not generated by autoconf
|
||||||
|
# and do not recognize --build/--host cross compilation flags
|
||||||
|
configurePlatforms = [ ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
(if static then "--static" else "--dynamic")
|
(if static then "--static" else "--dynamic")
|
||||||
"--install-dir" "$(out)/bin"
|
"--install-dir" "$(out)/bin"
|
||||||
"--install-lib" "$(out)/lib"
|
"--install-lib" "$(out)/lib"
|
||||||
];
|
];
|
||||||
|
|
||||||
dontAddPrefix = true;
|
dontAddPrefix = true;
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"CC:=$(CC)"
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
preCheck = lib.optionalString stdenv.isDarwin ''
|
preCheck = lib.optionalString stdenv.isDarwin ''
|
||||||
|
|
Loading…
Reference in a new issue