Have configure.py modify internal variables depending on the --qml-plugindir configure option. diff -u PyQt-gpl-5.4.alt/configure.py PyQt-gpl-5.4/configure.py --- PyQt-gpl-5.4.alt/configure.py 2015-01-25 17:27:50.000000000 +0100 +++ PyQt-gpl-5.4/configure.py 2015-01-25 17:56:41.000000000 +0100 @@ -904,6 +904,9 @@ if opts.pyuicinterpreter is not None: self.pyuic_interpreter = opts.pyuicinterpreter + if opts.qmlplugindir is not None: + self.qml_plugin_dir = opts.qmlplugindir + if opts.qsciapidir is not None: self.qsci_api_dir = opts.qsciapidir type='hidden' name='id' value='7f081f43ed027fcf00a5fe7ab516586c80ed1cec'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/nix/libutil/util.hh
AgeCommit message (Expand)Author
2020-12-08daemon: 'Agent' constructor takes a list of environment variables....* nix/libutil/util.hh (struct Agent)[Agent]: Add 'env' parameter. * nix/libutil/util.cc (Agent::Agent): Honor it. Ludovic Courtès
2020-09-14daemon: Move 'Agent' to libutil....* nix/libstore/build.cc (DerivationGoal::tryBuildHook): Add "offload" to 'args' and pass settings.guixProgram as the first argument to Agent::Agent. (pathNullDevice, commonChildInit, Agent, Agent::Agent) (Agent::~Agent): Move to... * nix/libutil/util.cc: ... here. * nix/libutil/util.hh (struct Agent, commonChildInit): New declarations. Ludovic Courtès
2020-01-12daemon: Account for deleted store files when deduplication is on....Previously, a store item that is a regular file would not be accounted for in the 'bytesFreed' value computed by 'deletePath' because its 'st_nlink' count would always be >= 2. This commit fixes that. * nix/libutil/util.hh (deletePath): Add optional 'linkThreshold' argument. * nix/libutil/util.cc (_deletePath): Add 'linkThreshold' argument and honor it. Pass it down in recursive call. (deletePath): Add 'linkThreshold' and honor it. * nix/libstore/gc.cc (LocalStore::deleteGarbage): Pass 'linkThreshold' argument to 'deletePath', with a value of 2 when PATH is a store item and deduplication is on. Ludovic Courtès
2017-08-18nix: Remove unused function....* nix/libutil/util.hh: * nix/libutil/util.cc (decodeOctalEscaped): Remove unused and buggy function. Andy Wingo