summaryrefslogtreecommitdiffstats
path: root/src/libs/module/Module.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/module/Module.cpp')
-rw-r--r--src/libs/module/Module.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/module/Module.cpp b/src/libs/module/Module.cpp
index 8f3d6e81..8d1399b1 100644
--- a/src/libs/module/Module.cpp
+++ b/src/libs/module/Module.cpp
@@ -78,7 +78,8 @@ load_module(const string& name)
cerr << "Loaded module \"" << name << "\" from " << INGEN_MODULE_DIR << endl;
return SharedPtr<Glib::Module>(module);
} else {
- cerr << "Unable to load module \"" << name << "\" (try setting INGEN_MODULE_PATH)." << endl;
+ cerr << "Unable to load module \"" << name << "\", is Ingen installed?" << endl
+ << "Use ./ingen.dev to run from the source tree." << endl;
return SharedPtr<Glib::Module>();
}
}