am 452ef231: Fix unnecessary assumption about source dir name

* commit '452ef231d18d5334b5ea30c9ee700d52ed0da505':
  Fix unnecessary assumption about source dir name
diff --git a/scripts/build/common.py b/scripts/build/common.py
index f3f327e..04ca49c 100644
--- a/scripts/build/common.py
+++ b/scripts/build/common.py
@@ -24,8 +24,7 @@
 import shlex
 import subprocess
 
-SRC_BASE_DIR		= os.path.realpath(os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..", "..")))
-DEQP_DIR			= os.path.join(SRC_BASE_DIR, "deqp")
+DEQP_DIR = os.path.realpath(os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..")))
 
 def die (msg):
 	print msg