From: yomguy Date: Tue, 15 Jan 2008 16:13:06 +0000 (+0000) Subject: Add filesep to paths X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=75f0c97ab5c1c307c8995fdec933147956946695;p=cnaq.git Add filesep to paths git-svn-id: http://svn.parisson.org/svn/CNAQ/trunk@145 5fc3e0e6-29bc-4d03-b52b-c088cb822bde --- 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);