summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-02 03:18:16 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-01-25 17:00:16 +0900
commit4912fef75365e6c434da022a3e0ac88632beae71 (patch)
tree7ac591b9e372b1821efbe323e15c20944f878bf5 /options
parentc9c9919b2dfedcd3cc7184326a6539440b0d6e85 (diff)
downloadmpv-4912fef75365e6c434da022a3e0ac88632beae71.tar.bz2
mpv-4912fef75365e6c434da022a3e0ac88632beae71.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;
}