summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-02 03:18:16 +0100
committerwm4 <wm4@nowhere>2015-01-02 03:18:16 +0100
commitc4f39d2aba6f1f785648a2a96d147243cf944e12 (patch)
tree7af5603981ed63f4e2d30898e99c8c2dbe7696ce /options
parentf12b70d77d42211f06a71eaa61c0e650f06fb501 (diff)
downloadmpv-c4f39d2aba6f1f785648a2a96d147243cf944e12.tar.bz2
mpv-c4f39d2aba6f1f785648a2a96d147243cf944e12.tar.xz
build: rename MPLAYER_CONFDIR define
We certainly don't use the mplayer configuration dir. The name didn't matter, but now that it's in user-visible output (as part of config.h being dumped in verbose mode), it's a bit too strange.
Diffstat (limited to 'options')
-rw-r--r--options/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/path.c b/options/path.c
index 80c461cda8..5783e2e549 100644
--- a/options/path.c
+++ b/options/path.c
@@ -74,7 +74,7 @@ static int mp_add_xdg_config_dirs(struct mpv_global *global, char **dirs, int i)
i = mp_add_macosx_bundle_dir(global, dirs, i);
#endif
- dirs[i++] = MPLAYER_CONFDIR;
+ dirs[i++] = MPV_CONFDIR;
return i;
}