From 75dcb100724f97117d518b1831e3965e3e0cf5ed Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 4 Sep 2009 14:10:16 -0400 Subject: Bug 593162 - Use built scanner from tarball builds Looking for .git/.svn breaks in tarball scenarios; instead just see if our source directory is named 'tools'. --- tools/g-ir-scanner.in | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/g-ir-scanner.in b/tools/g-ir-scanner.in index 4c4d9270..d2ef89c6 100755 --- a/tools/g-ir-scanner.in +++ b/tools/g-ir-scanner.in @@ -24,10 +24,9 @@ import sys # This only works on unix systems currentdir = os.path.dirname(os.path.abspath(sys.argv[0])) -basedir = os.path.abspath(os.path.join(currentdir, '..')) -if (os.path.exists(os.path.join(basedir, '.svn')) or - os.path.exists(os.path.join(basedir, '.git'))): - path = basedir +current_name = os.path.basename(currentdir) +if current_name == 'tools': + path = os.path.abspath(os.path.join(currentdir, '..')) else: # This is a private directory, we don't want to pollute the global # namespace. -- cgit v1.2.1