summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPyry Haulos <phaulos@google.com>2015-09-24 13:17:12 -0700
committerPyry Haulos <phaulos@google.com>2015-09-24 13:17:12 -0700
commit452ef231d18d5334b5ea30c9ee700d52ed0da505 (patch)
treed1affc5b9354f33d21fe0597b559479fd9525b95 /scripts
parente2991312606d33eef30c54787f71e166c4317aa3 (diff)
downloadVK-GL-CTS-452ef231d18d5334b5ea30c9ee700d52ed0da505.tar.gz
VK-GL-CTS-452ef231d18d5334b5ea30c9ee700d52ed0da505.tar.bz2
VK-GL-CTS-452ef231d18d5334b5ea30c9ee700d52ed0da505.zip
Fix unnecessary assumption about source dir name
Build scripts were unnecessarily (and sometimes incorrectly) assuming that deqp sources would be in a directory called "deqp". Change-Id: I3c6cf5d850aa5598daa1d0832ee403bb639451a2
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/common.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/build/common.py b/scripts/build/common.py
index f3f327e30..04ca49cd9 100644
--- a/scripts/build/common.py
+++ b/scripts/build/common.py
@@ -24,8 +24,7 @@ import os
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