13
0

some package debugging to help find out why export formats are not found

git-svn-id: svn://localhost/ardour2/branches/3.0@10886 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-12-04 18:48:28 +00:00
parent e2d6d8e34d
commit 9238253441

View File

@ -17,6 +17,7 @@
*/
#include <iostream>
#include <glibmm/miscutils.h>
#include "ardour/export_formats_search_path.h"
@ -40,6 +41,8 @@ export_formats_search_path ()
spath += user_config_directory ();
spath.add_subdirectory_to_paths (export_formats_dir_name);
std::cerr << "Looking for export formats in " << spath.to_string() << std::endl;
return spath;
}