diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-28 17:10:51 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-28 17:10:51 +0000 |
commit | 6c73b4416ccda3d02bfaf9526ec356960260253b (patch) | |
tree | 59e666a757a957d1b89170ed4ee8b4b006d24b12 /util/sconfig/config.g | |
parent | 1a08f582b54ec9fff0f356a824647ee40b3a5008 (diff) | |
download | coreboot-6c73b4416ccda3d02bfaf9526ec356960260253b.tar.xz |
Remove all build/ prefixes in the build output.
Also, remove one missing hardcoded "build" dir in the distclean target,
and clean up files generated by sconfig in 'make clean'.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4880 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/sconfig/config.g')
-rw-r--r-- | util/sconfig/config.g | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sconfig/config.g b/util/sconfig/config.g index d8bc855021..94c665f15e 100644 --- a/util/sconfig/config.g +++ b/util/sconfig/config.g @@ -886,7 +886,7 @@ def dumptree(part, lvl): def writecode(image): filename = os.path.join(img_dir, "static.c") - print " SCONFIG ", join(filename.split('/')[-5:], '/') + print " SCONFIG ", join(filename.split('/')[-4:], '/') file = safe_open(filename, 'w+') file.write("#include <device/device.h>\n") file.write("#include <device/pci.h>\n") @@ -920,7 +920,7 @@ def gencode(part, file, pass_num): def writegraph(image): filename = os.path.join(img_dir, "static.dot") - print " SCONFIG ", join(filename.split('/')[-5:], '/') + print " SCONFIG ", join(filename.split('/')[-4:], '/') file = safe_open(filename, 'w+') file.write("digraph devicetree {\n") file.write(" rankdir=LR\n") |