Merge pull request #33482 from dtzWill/fix/sharutils-ar

sharutils: don't hardcode AR
This commit is contained in:
Orivej Desh 2018-01-06 20:59:18 +00:00 committed by GitHub
commit 627724618f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;