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
1 changed files with 2 additions and 0 deletions

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;