qt55.qtbase: don't interpolate needlessly

This commit is contained in:
Thomas Tuegel 2015-12-19 12:26:54 -06:00
parent 09e9e3e359
commit 36dda92317

View file

@ -201,12 +201,11 @@ stdenv.mkDerivation {
postInstall =
''
${lib.optionalString buildDocs ''
make docs && make install_docs
''}
# Don't retain build-time dependencies like gdb and ruby.
sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri
''
+ lib.optionalString buildDocs ''
make docs && make install_docs
'';
inherit lndir;