From 7e7f6b154a0ad4c6d15872bd9b25de28950914a5 Mon Sep 17 00:00:00 2001 From: Sam Hartman Date: Fri, 13 Jan 2012 12:00:12 -0500 Subject: [PATCH] Builder: fix make install with schroot --- builder | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/builder b/builder index 576ee2f..5d0ac73 100755 --- a/builder +++ b/builder @@ -153,8 +153,9 @@ if tar_file is not None: dist = True our_schroot = None if options.schroot is not None: our_schroot = Schroot(options.schroot) - schroot_command = "schroot -r -c " + our_schroot.name + ' --' - root_command = schroot_command + " -u root" + schroot_command_base = "schroot -r -c " + our_schroot.name + root_command = schroot_command_base + " -u root --" + schroot_command = schroot_command_base + ' --' all_packages = read_packages() if len(packages) == 0: packages = all_packages -- 2.1.4