summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-11 11:58:24 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-11 11:58:24 +0000
commit78eaed7c86e85871b52937ff221e928c711fa73c (patch)
tree3ce0c8e411d2554b9cbe61a1ec58b70b06e4c7d1 /Makefile
parent9e1fd70ee0b8bfaf2f1f0f0efc65b000da3b2d46 (diff)
downloadmpv-78eaed7c86e85871b52937ff221e928c711fa73c.tar.bz2
mpv-78eaed7c86e85871b52937ff221e928c711fa73c.tar.xz
test -e -> -d
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2162 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 09d3d296f7..8bc05b26f5 100644
--- a/Makefile
+++ b/Makefile
@@ -118,14 +118,14 @@ $(PRG_CFG): version.h codec-cfg.c codec-cfg.h
$(CC) $(CFLAGS) -g codec-cfg.c -o $(PRG_CFG) -DCODECS2HTML
install: $(ALL_PRG)
- if [ ! -e $(BINDIR) ]; then \
+ if [ ! -d $(BINDIR) ]; then \
mkdir -p $(BINDIR); \
fi
install -m 755 -s $(PRG) $(BINDIR)/$(PRG)
ifeq ($(GUI),yes)
-ln -s $(BINDIR)/$(PRG) $(BINDIR)/gmplayer
endif
- if [ ! -e $(prefix)/man/man1 ]; then \
+ if [ ! -d $(prefix)/man/man1 ]; then \
mkdir -p $(prefix)/man/man1; \
fi
install -c -m 644 DOCS/mplayer.1 $(prefix)/man/man1/mplayer.1