Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Giulio
purr-data
Commits
978adcb0
Commit
978adcb0
authored
Jan 23, 2017
by
Jonathan Wilkes
Browse files
fix #228: use pd-l2ork paths in sys_setextrapath
parent
5fe09657
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/s_path.c
View file @
978adcb0
...
...
@@ -310,15 +310,15 @@ void sys_setextrapath(const char *p)
#endif
#ifdef __APPLE__
sys_expandpath
(
"~/Library/Pd"
,
pathbuf
);
sys_expandpath
(
"~/Library/Pd
-l2ork
"
,
pathbuf
);
pd_extrapath
=
namelist_append
(
0
,
pathbuf
,
0
);
pd_extrapath
=
namelist_append
(
pd_extrapath
,
"/Library/Pd"
,
0
);
pd_extrapath
=
namelist_append
(
pd_extrapath
,
"/Library/Pd
-l2ork
"
,
0
);
#endif
#ifdef _WIN32
sys_expandpath
(
"%AppData%/Pd"
,
pathbuf
);
sys_expandpath
(
"%AppData%/Pd
-l2ork
"
,
pathbuf
);
pd_extrapath
=
namelist_append
(
0
,
pathbuf
,
0
);
sys_expandpath
(
"%CommonProgramFiles%/Pd"
,
pathbuf
);
sys_expandpath
(
"%CommonProgramFiles%/Pd
-l2ork
"
,
pathbuf
);
pd_extrapath
=
namelist_append
(
pd_extrapath
,
pathbuf
,
0
);
#endif
/* add built-in "extra" path last so its checked last */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment