aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/installable-derived-path.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcmd/installable-derived-path.cc')
-rw-r--r--src/libcmd/installable-derived-path.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libcmd/installable-derived-path.cc b/src/libcmd/installable-derived-path.cc
index 729dc7d31..6ecf54b7c 100644
--- a/src/libcmd/installable-derived-path.cc
+++ b/src/libcmd/installable-derived-path.cc
@@ -10,7 +10,10 @@ std::string InstallableDerivedPath::what() const
DerivedPathsWithInfo InstallableDerivedPath::toDerivedPaths()
{
- return {{.path = derivedPath, .info = {} }};
+ return {{
+ .path = derivedPath,
+ .info = make_ref<ExtraPathInfo>(),
+ }};
}
std::optional<StorePath> InstallableDerivedPath::getStorePath()