diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-11 11:58:24 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-11 11:58:24 +0000 |
commit | 78eaed7c86e85871b52937ff221e928c711fa73c (patch) | |
tree | 3ce0c8e411d2554b9cbe61a1ec58b70b06e4c7d1 /Makefile | |
parent | 9e1fd70ee0b8bfaf2f1f0f0efc65b000da3b2d46 (diff) | |
download | mpv-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |