aboutsummaryrefslogtreecommitdiff
blob: 9324d205556faf7266e283fe382f7de495883878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# quick wrapper to run local sandbox with local libsandbox
dir=${0%/*}
export abs_top_srcdir="@abs_top_srcdir@"
export abs_top_builddir="@abs_top_builddir@"
export LD_LIBRARY_PATH="${abs_top_builddir}/libsandbox/.libs"
export __SANDBOX_TESTING=yes
if [ -x "${dir}"/sandbox ] ; then
	exec "${dir}"/sandbox "$@"
else
	exec sandbox "$@"
fi