Browse Source

BUILD: fix indentation

Signed-off-by: Sevki <s@sevki.org>
Sevki 7 years ago
parent
commit
483755f1f0
2 changed files with 3 additions and 3 deletions
  1. 1 1
      sys/src/9/boot/BUILD
  2. 2 2
      sys/src/cmd/aux/console/BUILD

+ 1 - 1
sys/src/9/boot/BUILD

@@ -51,7 +51,7 @@ cc_library(
 		"boot.c",
 		"bootcache.c",
 		"bootip.c",
-	fmt("boot%scpu.c", env("ARCH")),
+		fmt("boot%scpu.c", env("ARCH")),
 		"bootrc.c",
 		"embed.c",
 		"local.c",

+ 2 - 2
sys/src/cmd/aux/console/BUILD

@@ -4,7 +4,7 @@ harvey_binary(
     name="consoles",
     includes=[
         "//sys/include",
-        "//amd64/include",
+        "//${ARCH}/include",
     ],
     deps=[
         "comconsole",
@@ -47,7 +47,7 @@ harvey_binary(
 		"//sys/src/libc:libc",
 	],
 	srcs=[
-        		"buffer.c",
+		"buffer.c",
 		"cga.c",
 		"screenconsole.c",
 		"keyboard.c",