summaryrefslogtreecommitdiff
path: root/libs/ardour/system_exec.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-07-11 16:39:55 +0200
committerRobin Gareus <robin@gareus.org>2014-07-11 16:43:50 +0200
commitc83b7ebc3ca4b9e2266ec355e9e848d7d62d86b4 (patch)
tree963d900fcce16bd8c61325ca1f27fe917bf99654 /libs/ardour/system_exec.cc
parent1f501ef94023d2911e9542b70668455e0aa72a10 (diff)
fatal error if vfork-exec-wrapper cannot be found (on unix systems).
Diffstat (limited to 'libs/ardour/system_exec.cc')
-rw-r--r--libs/ardour/system_exec.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/system_exec.cc b/libs/ardour/system_exec.cc
index 456f8351f2..75b20e4500 100644
--- a/libs/ardour/system_exec.cc
+++ b/libs/ardour/system_exec.cc
@@ -37,7 +37,8 @@ static char *vfork_exec_wrapper_path() {
if (!PBD::find_file (
PBD::Searchpath(Glib::build_filename(ARDOUR::ardour_dll_directory(), "vfork")),
"ardour-exec-wrapper", vfork_exec_wrapper)) {
- PBD::warning << "vfork exec wrapper not found..'" << endmsg;
+ PBD::fatal << "vfork exec wrapper 'ardour-exec-wrapper' was not found in $PATH." << endmsg;
+ /* not reached */
return NULL;
}
return strdup(vfork_exec_wrapper.c_str());