diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-01-10 15:20:30 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-01-10 15:20:30 +0100 |
commit | 59cc920cc0751f93d4a3b717da72505a7bab2ee7 (patch) | |
tree | 26cc7b6b13852738fbe8c63ac0f5720596b4b9df /src | |
parent | 7f1af270ddffa1cd6d18c167bcebe56b93bfd127 (diff) |
Add a FIXME
Diffstat (limited to 'src')
-rw-r--r-- | src/nix/profile.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix/profile.cc b/src/nix/profile.cc index 3da47568c..22ee51ab9 100644 --- a/src/nix/profile.cc +++ b/src/nix/profile.cc @@ -262,7 +262,8 @@ builtPathsPerInstallable( auto & r = res[installable.get()]; /* Note that there could be conflicting info (e.g. meta.priority fields) if the installable returned - multiple derivations. So pick one arbitrarily. */ + multiple derivations. So pick one arbitrarily. FIXME: + print a warning? */ r.first.push_back(builtPath.path); r.second = builtPath.info; } |