forked from mirrors/nixpkgs
sharutils: don't hardcode AR to 'ar' (doesn't exist on cross)
Instead, let the default value of $AR indicate what should be used. (which will be something like `armv6l-unknown-linux-gnueabihf-ar`)
This commit is contained in:
parent
3e87443100
commit
2b230efb7f
|
@ -28,6 +28,8 @@ stdenv.mkDerivation rec {
|
|||
in ''
|
||||
substituteInPlace tests/shar-1 --replace '${shar_sub}' '${shar_sub} -s submitter'
|
||||
substituteInPlace tests/shar-2 --replace '${shar_sub}' '${shar_sub} -s submitter'
|
||||
|
||||
substituteInPlace intl/Makefile.in --replace "AR = ar" ""
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
|
Loading…
Reference in a new issue