From f3552ff7d134c827cd34a4753a7c2064b0b6d00d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= <branimirkaradzic@gmail.com>
Date: Sat, 9 Jan 2016 20:30:15 -0800
Subject: [PATCH] Cleanup.

---
 makefile          | 2 +-
 scripts/genie.lua | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/makefile b/makefile
index 738d0139..02f59da2 100644
--- a/makefile
+++ b/makefile
@@ -20,7 +20,7 @@ endif
 
 # $(info $(OS))
 
-GENIE ?= ../bx/tools/bin/$(OS)/genie $(GENIE_FLAGS)
+GENIE?=../bx/tools/bin/$(OS)/genie $(GENIE_FLAGS)
 
 all:
 	$(GENIE) --with-tools --with-shared-lib vs2008
diff --git a/scripts/genie.lua b/scripts/genie.lua
index aaf2f4d2..74009f43 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -66,12 +66,12 @@ solution "bgfx"
 	startproject "example-00-helloworld"
 
 BGFX_DIR = path.getabsolute("..")
-BX_DIR = os.getenv("BX_DIR")
+BX_DIR   = os.getenv("BX_DIR")
 
 local BGFX_BUILD_DIR = path.join(BGFX_DIR, ".build")
 local BGFX_THIRD_PARTY_DIR = path.join(BGFX_DIR, "3rdparty")
 if not BX_DIR then
-  BX_DIR = path.getabsolute(path.join(BGFX_DIR, "../bx"))
+	BX_DIR = path.getabsolute(path.join(BGFX_DIR, "../bx"))
 end
 
 if not os.isdir(BX_DIR) then