Automation of LV2 plugin properties.
[ardour.git] / libs / ardour / system_exec.cc
index 456f8351f26a33586294f782f433b16dc997f3b0..75b20e4500279411e35b0096345baa12f9287eee 100644 (file)
@@ -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());