diff options
Diffstat (limited to 'debian/bin-wrapper.in')
-rw-r--r-- | debian/bin-wrapper.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/bin-wrapper.in b/debian/bin-wrapper.in new file mode 100644 index 0000000..f8ca63b --- /dev/null +++ b/debian/bin-wrapper.in @@ -0,0 +1,11 @@ +#! /bin/sh + +# some build tools are linked with a new libstdc++ and fail to run +# when building libstdc++. + +if [ -n "$LD_LIBRARY_PATH" ]; then + ma=$(dpkg-architecture -qDEB_BUILD_MULTIARCH) + export LD_LIBRARY_PATH="/lib/$ma:/usr/lib/$ma:/lib:/usr/lib:$LD_LIBRARY_PATH" +fi + +exec /usr/bin/$(basename $0) "$@" |