From: Michael Tremer Date: Tue, 6 Jul 2010 20:18:08 +0000 (+0200) Subject: naoki: Let ./make.sh build --shell run the prepare command. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15f05b6977b244e207e5d60c2c1c22bdd616cf6e;p=ipfire-3.x.git naoki: Let ./make.sh build --shell run the prepare command. --- diff --git a/naoki/chroot.py b/naoki/chroot.py index 1875eea3e..5e7238ef9 100644 --- a/naoki/chroot.py +++ b/naoki/chroot.py @@ -369,6 +369,11 @@ class PackageEnvironment(Environment): def log(self): return self.package.log + def shell(self, *args): + self.make("prepare") + Environment.shell(self, *args) + self.clean() + class ShellEnvironment(Environment): def chrootPath(self, *args):