summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-10 17:25:25 +0100
committerMichael Meeks <michael.meeks@collabora.com>2015-01-19 15:04:24 +0000
commit0394e710919b18106127a9dd08f78352b5e35939 (patch)
tree448b2ca77004b51db888758745ff5d34bb40cb0a /bin
parent75750941b77620c215d50981f2cd8582f61d3eff (diff)
bin/run LO_TRACE hook
(similar to our CPPUNITTRACE hook) Change-Id: Iec4e8d4246ba7fca0afe5f9be6f6bcd9e0289e49 Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/run6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/run b/bin/run
index 382ff73a1288..20cea78008c6 100755
--- a/bin/run
+++ b/bin/run
@@ -29,7 +29,7 @@ echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
echo "setting search path to: ${PATH}"
echo "execing: ${exedir}/$1"
-exec "${exedir}"/$@
+exec ${LO_TRACE} "${exedir}"/$@
elif [ $(uname) = Darwin ]; then
@@ -48,7 +48,7 @@ echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
echo "setting search path to: ${DYLD_LIBRARY_PATH}"
echo "execing: ${exedir}/$1"
-exec "${exedir}"/$@
+exec ${LO_TRACE} "${exedir}"/$@
else
@@ -70,6 +70,6 @@ echo "setting URE_BOOTSTRAP to: ${URE_BOOTSTRAP}"
echo "setting search path to: ${LD_LIBRARY_PATH}"
echo "execing: ${exedir}/$1"
-exec "${exedir}"/$@
+exec ${LO_TRACE} "${exedir}"/$@
fi