summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-07-28 22:21:17 +0000
committerDavid Robillard <d@drobilla.net>2008-07-28 22:21:17 +0000
commit1b6bdab7661cdb9a66535ce03e98cc427f276538 (patch)
tree0290ef26b5d3099882711d789116d7f8ec170385 /src/libs
parent2fd41e8d03877f454bff4943901d5c1638aac9bb (diff)
downloadingen-1b6bdab7661cdb9a66535ce03e98cc427f276538.tar.gz
ingen-1b6bdab7661cdb9a66535ce03e98cc427f276538.tar.bz2
ingen-1b6bdab7661cdb9a66535ce03e98cc427f276538.zip
Remove annoying set_dev_environment.sh script in favour of progs/ingen/ingen.dev wrapper script.
git-svn-id: http://svn.drobilla.net/lad/ingen@1295 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs')
-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>();
}
}