Mercurial > mplayer.hg
diff Makefile @ 2161:d157f31719f6
test -e -> -d
author | arpi |
---|---|
date | Thu, 11 Oct 2001 11:58:24 +0000 |
parents | d2bed9c43e3b |
children | a2f6f5854306 |
line wrap: on
line diff
--- a/Makefile Thu Oct 11 06:24:17 2001 +0000 +++ b/Makefile Thu Oct 11 11:58:24 2001 +0000 @@ -118,14 +118,14 @@ $(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