diff options
Diffstat (limited to 'paludis/repositories/e/pipe_command_handler.cc')
-rw-r--r-- | paludis/repositories/e/pipe_command_handler.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/paludis/repositories/e/pipe_command_handler.cc b/paludis/repositories/e/pipe_command_handler.cc index 77f69018a..bde711efa 100644 --- a/paludis/repositories/e/pipe_command_handler.cc +++ b/paludis/repositories/e/pipe_command_handler.cc @@ -447,6 +447,9 @@ paludis::erepository::pipe_command_handler(const Environment * const environment return "EOPTIONQ ID " + stringify(*package_id) + " has no choice named '" + stringify(name) + "'"; } + if (is_special_elike_choice_value(value)) + return "Ecannot query option '" + stringify(name) + "' for ID " + stringify(*package_id); + if (value->enabled()) return "O0;"; else |