summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-14 10:56:44 +0100
committerwm4 <wm4@nowhere>2012-11-14 11:48:18 +0100
commita86ec729868e9bd5777f5800527e5cd9bf79fe85 (patch)
tree2b3df2156c606e76df904de2676d69a24d02f0c9
parent597a0c70f94f370a3b8749464b7af891bdc7bae2 (diff)
downloadmpv-a86ec729868e9bd5777f5800527e5cd9bf79fe85.tar.bz2
mpv-a86ec729868e9bd5777f5800527e5cd9bf79fe85.tar.xz
Makefile: do not create config directory with install target
The config directory, controlled by --confdir and which is set to PREFIX/etc/mpv by default, should not be created by default, as "make install" doesn't copy any files there. The user can still create a config file manually if system-wide configuration is desired.
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 53921b5676..6e89491224 100644
--- a/Makefile
+++ b/Makefile
@@ -415,7 +415,6 @@ install-no-man: $(INSTALL_NO_MAN_TARGETS)
install-dirs:
if test ! -d $(BINDIR) ; then $(INSTALL) -d $(BINDIR) ; fi
- if test ! -d $(CONFDIR) ; then $(INSTALL) -d $(CONFDIR) ; fi
install-%: %$(EXESUF) install-dirs
$(INSTALL) -m 755 $(INSTALLSTRIP) $< $(BINDIR)