summaryrefslogtreecommitdiff
path: root/giscanner
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner')
-rw-r--r--giscanner/scannermain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/scannermain.py b/giscanner/scannermain.py
index b6bbe9d7..df721212 100644
--- a/giscanner/scannermain.py
+++ b/giscanner/scannermain.py
@@ -493,10 +493,10 @@ def write_output(data, options):
def get_source_root_dirs(options, filenames):
if options.sources_top_dirs:
- return options.sources_top_dir
+ return [os.path.realpath(p) for p in options.sources_top_dirs]
# None passed, we need to guess
- assert all(os.path.isabs(f) for f in filenames)
+ filenames = [os.path.realpath(p) for p in filenames]
dirs = sorted(set([os.path.dirname(f) for f in filenames]))
# We need commonpath (3.5+), otherwise give up