summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXimin Luo <infinity0@debian.org>2016-12-07 18:49:06 +0100
committerAndrej Shadura <andrewsh@debian.org>2019-03-09 16:21:07 +0000
commite0f23e5e8c136e6290796430cd902193ecc8ad6c (patch)
treeacbb9aca1a20b1ec28fd67b71a3c006900bea2c4
parentae9c92ba130dd977f6a12edcd702a8ed9ed9374a (diff)
Work around https://github.com/less/less.js/pull/3002
Gbp-Pq: Name 0005-Work-around-https-github.com-less-less.js-pull-3002.patch
-rw-r--r--setupbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setupbase.py b/setupbase.py
index bde2f21..f1747d1 100644
--- a/setupbase.py
+++ b/setupbase.py
@@ -480,7 +480,7 @@ class CompileCSS(Command):
'--source-map', '--source-map-basepath='+os.path.dirname(__file__),
'--include-path=%s' % pipes.quote(static),
src,
- dst,
+ os.path.relpath(dst, repo_root),
], cwd=repo_root, env=env)
except OSError as e:
print("Failed to build css: %s" % e, file=sys.stderr)