3
0
Fork 0
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:
Will Dietz 2018-01-03 17:26:59 -06:00
parent 3e87443100
commit 2b230efb7f

View file

@ -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;