From 75f0c97ab5c1c307c8995fdec933147956946695 Mon Sep 17 00:00:00 2001 From: yomguy Date: Tue, 15 Jan 2008 16:13:06 +0000 Subject: [PATCH] Add filesep to paths git-svn-id: http://svn.parisson.org/svn/CNAQ/trunk@145 5fc3e0e6-29bc-4d03-b52b-c088cb822bde --- CNAQ.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CNAQ.m b/CNAQ.m index a7f9681..cf6c309 100644 --- a/CNAQ.m +++ b/CNAQ.m @@ -122,9 +122,9 @@ cnaq_version = '0.1'; root_dir = pwd; % The directory where CNAQ is installed cnaq_path = root_dir; -config_path = [cnaq_path '\config\']; -tools_path = [cnaq_path '\tools\']; -pa_path = [cnaq_path '\pa_wavplay\']; +config_path = [cnaq_path filesep 'config' filesep]; +tools_path = [cnaq_path filesep 'tools' filesep]; +pa_path = [cnaq_path filesep 'pa_wavplay' filesep]; path(path, cnaq_path); path(path, tools_path); path(path, pa_path); -- 2.39.5