summaryrefslogtreecommitdiff
path: root/libs/ardour/panner_search_path.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-23 14:36:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-23 14:36:29 +0000
commit40e2a6b16b47acf1f19a31f5e6d1cd463c45e1b6 (patch)
treeb82377e932eb2de96531a352b30d78fefb5c4bd9 /libs/ardour/panner_search_path.cc
parenta34c5adc4089c841d7bc6a43c980b16f0ec30853 (diff)
set ARDOUR_SURFACES_PATH for a bundle, just like ARDOUR_PANNER_PATH
git-svn-id: svn://localhost/ardour2/branches/3.0@9191 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/panner_search_path.cc')
-rw-r--r--libs/ardour/panner_search_path.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/ardour/panner_search_path.cc b/libs/ardour/panner_search_path.cc
index 8fff791351..cbb62bbf3c 100644
--- a/libs/ardour/panner_search_path.cc
+++ b/libs/ardour/panner_search_path.cc
@@ -17,7 +17,6 @@
*/
-#include <iostream>
#include <glibmm/miscutils.h>
#include "ardour/panner_search_path.h"
@@ -39,14 +38,11 @@ panner_search_path ()
SearchPath spath_env (Glib::getenv(panner_env_variable_name, panner_path_defined));
if (panner_path_defined) {
- std::cerr << "for panner, using environment search path " << spath_env.to_string() << std::endl;
return spath_env;
}
SearchPath spath (user_config_directory ());
- std::cerr << "for panner, AMD = " << ardour_module_directory().to_string() << std::endl;
-
spath += ardour_module_directory ();
spath.add_subdirectory_to_paths(panner_dir_name);