sub get_install_root()

in lib/Debian/Debhelper/Buildsystem/dh_virtualenv.pm [29:35]


sub get_install_root {
    my $prefix = "/usr/share/python";
    if (defined $ENV{DH_VIRTUALENV_INSTALL_ROOT}) {
        $prefix = $ENV{DH_VIRTUALENV_INSTALL_ROOT};
    }
    return $prefix;
}