Lines Matching refs:home
100 ('home=', None,
101 "(Unix only) home directory to install under"),
105 "base installation directory (instead of --prefix or --home)"),
108 "(instead of --exec-prefix or --home)"),
169 self.home = None
181 # scheme implied by prefix/exec-prefix/home and the contents of
258 if ((self.prefix or self.exec_prefix or self.home) and
261 "must supply either prefix/exec-prefix/home or " +
264 if self.home and (self.prefix or self.exec_prefix):
266 "must supply either home or prefix/exec-prefix -- not both")
268 if self.user and (self.prefix or self.exec_prefix or self.home or
271 "exec_prefix/home, or install_(plat)base")
282 # input a heady brew of prefix, exec_prefix, home, install_base,
349 # Create directories in the home dir:
435 elif self.home is not None:
436 self.install_base = self.install_platbase = self.home
463 elif self.home is not None:
464 self.install_base = self.install_platbase = self.home
556 home = convert_path(os.path.expanduser("~"))
558 if path.startswith(home) and not os.path.isdir(path):