mandoc: use printf instead of echo for writing configure.local

This should be a bit more robust and portable.
This commit is contained in:
sternenseemann 2021-09-19 19:52:50 +02:00
parent 71fae710cc
commit a0a2b5f788

View File

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
'';
preConfigure = ''
echo $configureLocal > configure.local
printf '%s' "$configureLocal" > configure.local
'';
meta = with lib; {