From: Michael Tremer Date: Sun, 10 Jan 2010 14:40:04 +0000 (+0100) Subject: naoki: Print directory that we are in. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce7ffd0d1dbbd0706d6deea78593af18bbb204ea;p=ipfire-3.x.git naoki: Print directory that we are in. It is confusing if you get an error and do not know where. --- diff --git a/naoki/chroot.py b/naoki/chroot.py index 4c1465586..1d8b2e2c1 100644 --- a/naoki/chroot.py +++ b/naoki/chroot.py @@ -109,7 +109,7 @@ class Environment(object): if not self.toolchain: file = "/usr/src%s" % file[len(BASEDIR):] - return self.doChroot("make --no-print-directory -C %s -f %s %s" % \ + return self.doChroot("make -C %s -f %s %s" % \ (os.path.dirname(file), file, target), shell=True) def doChroot(self, command, shell=True, *args, **kwargs):