summaryrefslogtreecommitdiffstats
path: root/bin/run
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-10 17:25:25 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-10 17:25:25 +0100
commitf3c653a138ec02a9f72281ca9262340fa24eed50 (patch)
treebc2f6f6f5af724ce6d8ad11459f654a02639af97 /bin/run
parentfix packaging of OpenGL shaders, related fdo#83875 (diff)
downloadcore-f3c653a138ec02a9f72281ca9262340fa24eed50.tar.gz
core-f3c653a138ec02a9f72281ca9262340fa24eed50.zip
bin/run LO_TRACE hook
(similar to our CPPUNITTRACE hook) Change-Id: Iec4e8d4246ba7fca0afe5f9be6f6bcd9e0289e49
Diffstat (limited to 'bin/run')
-rwxr-xr-xbin/run6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/run b/bin/run
index 341e7d593190..6013f8452be9 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