Merge pull request #97584 from gebner/ncftp-tmpdir

ncftp: do not override $TMPDIR
This commit is contained in:
Gabriel Ebner 2020-09-09 22:13:19 +02:00 committed by GitHub
commit a0f1c301d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
preConfigure = ''
find -name Makefile.in | xargs sed -i '/^TMPDIR=/d'
find . -name '*.sh' -or -name '*.in' -or -name '*.c' -or -name configure | xargs sed -i \
-e 's@/bin/ls@${coreutils}/bin/ls@g' \
-e 's@/bin/rm@${coreutils}/bin/rm@g'