diff options
Diffstat (limited to 'libpod/version.go')
-rw-r--r-- | libpod/version.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpod/version.go b/libpod/version.go index d2b99a275..b876efddd 100644 --- a/libpod/version.go +++ b/libpod/version.go @@ -15,6 +15,12 @@ var ( // BuildInfo is the time at which the binary was built // It will be populated by the Makefile. buildInfo string + // InstallPrefix is the prefix where podman will be installed. + // It will be populated by the Makefile. + installPrefix string = "/usr/local" + // EtcDir is the sysconfdir where podman should look for system config files. + // It will be populated by the Makefile. + etcDir string = "/etc" ) //Version is an output struct for varlink |