From d95de393390f7f8ee4c13e491b4e4d2555db535a Mon Sep 17 00:00:00 2001 From: John Emmas Date: Fri, 11 Apr 2014 13:03:48 +0100 Subject: Make sure we use the correct style of filepath separator on Windows ('libs/ardour/file_source.cc' still to be investigated) --- libs/pbd/search_path.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/pbd/search_path.cc') diff --git a/libs/pbd/search_path.cc b/libs/pbd/search_path.cc index fe2087f6b1..6c152e6015 100644 --- a/libs/pbd/search_path.cc +++ b/libs/pbd/search_path.cc @@ -133,7 +133,7 @@ export_search_path (const string& base_dir, const char* varname, const char* dir if (cstr) { path = cstr; - path += ':'; + path += G_DIR_SEPARATOR; } else { path = ""; } -- cgit v1.2.3