~ubuntu-branches/ubuntu/maverick/schroot/maverick

« back to all changes in this revision

Viewing changes to bin/dchroot/dchroot-session-base.cc

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2010-07-06 23:34:30 UTC
  • mfrom: (1.1.24 upstream) (2.2.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100706233430-0xhzqj6105yuyvb1
Tags: 1.4.7-1
* New upstream stable release.
* Use standards version 3.9.0.
* Correctly distribute profile conffiles (Closes: #588247).  Thanks
  to Mario Holbe.
* Update it and zh_CN translations.  Thanks to Vincenzo Campanella
  and Ji ZhengYu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
}
77
77
 
78
78
sbuild::string_list
79
 
session_base::get_command_directories () const
 
79
session_base::get_command_directories (sbuild::chroot::ptr&       session_chroot,
 
80
                                       sbuild::environment const& env) const
80
81
{
81
82
  // dchroot does not treat logins differently from commands with
82
83
  // respect to the cwd inside the chroot.
83
 
  return get_login_directories();
 
84
  return get_login_directories(session_chroot, env);
84
85
}