aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/depfixer.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-08-07 23:24:53 +0300
committerXavier Claessens <xclaesse@gmail.com>2020-08-07 21:13:46 -0400
commit91c5b379706633f4e5a480dbcea4844a9f54be79 (patch)
tree5dbb27b6dbebabfde5b28d693b5cd85f6f7edf34 /mesonbuild/scripts/depfixer.py
parent352f05fe7cd8504923e1582f7774756f670bd4c4 (diff)
downloadmeson-91c5b379706633f4e5a480dbcea4844a9f54be79.zip
meson-91c5b379706633f4e5a480dbcea4844a9f54be79.tar.gz
meson-91c5b379706633f4e5a480dbcea4844a9f54be79.tar.bz2
Better log message on rpath error.
Diffstat (limited to 'mesonbuild/scripts/depfixer.py')
-rw-r--r--mesonbuild/scripts/depfixer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/scripts/depfixer.py b/mesonbuild/scripts/depfixer.py
index a3a3eff..4176b9a 100644
--- a/mesonbuild/scripts/depfixer.py
+++ b/mesonbuild/scripts/depfixer.py
@@ -323,7 +323,8 @@ class Elf(DataSizes):
new_rpath = b':'.join(new_rpaths)
if len(old_rpath) < len(new_rpath):
- sys.exit("New rpath must not be longer than the old one.")
+ msg = "New rpath must not be longer than the old one.\n Old: {}\n New: {}".format(old_rpath, new_rpath)
+ sys.exit(msg)
# The linker does read-only string deduplication. If there is a
# string that shares a suffix with the rpath, they might get
# dedupped. This means changing the rpath string might break something