summaryrefslogtreecommitdiffstats
path: root/tools/checkdeps/checkdeps.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkdeps/checkdeps.py')
-rwxr-xr-xtools/checkdeps/checkdeps.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/checkdeps/checkdeps.py b/tools/checkdeps/checkdeps.py
index 6124eeb..9cbfa2f 100755
--- a/tools/checkdeps/checkdeps.py
+++ b/tools/checkdeps/checkdeps.py
@@ -406,7 +406,7 @@ def main(options, args):
global BASE_DIRECTORY
if not options.base_directory:
BASE_DIRECTORY = os.path.abspath(
- os.path.join(os.path.abspath(sys.argv[0]), "..\..\.."))
+ os.path.join(os.path.abspath(sys.argv[0]), "../../.."))
else:
BASE_DIRECTORY = os.path.abspath(sys.argv[2])
@@ -453,5 +453,3 @@ if '__main__' == __name__:
default=False, help="Print debug logging")
options, args = option_parser.parse_args()
main(options, args)
-
-