From 9238253441b2b865d98e1f0aa08f828c9af7dcca Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 4 Dec 2011 18:48:28 +0000 Subject: [PATCH] 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 --- libs/ardour/export_formats_search_path.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/ardour/export_formats_search_path.cc b/libs/ardour/export_formats_search_path.cc index fa93e0a55a..e8b95b69e1 100644 --- a/libs/ardour/export_formats_search_path.cc +++ b/libs/ardour/export_formats_search_path.cc @@ -17,6 +17,7 @@ */ +#include #include #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; }