]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
naoki: Print directory that we are in.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 10 Jan 2010 14:40:04 +0000 (15:40 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 10 Jan 2010 14:40:04 +0000 (15:40 +0100)
It is confusing if you get an error and do not
know where.

naoki/chroot.py

index 4c14655867fadb68504c0326a933cf8b578753a9..1d8b2e2c1514bdbf9c469c483c40ce27f26ca19d 100644 (file)
@@ -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):