[Mplayer-cvslog] CVS: main Makefile,1.72,1.73
Arpi of Ize
arpi at mplayer.dev.hu
Thu Oct 11 13:58:46 CEST 2001
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv15336
Modified Files:
Makefile
Log Message:
test -e -> -d
Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/Makefile,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- Makefile 5 Oct 2001 13:39:43 -0000 1.72
+++ Makefile 11 Oct 2001 11:58:24 -0000 1.73
@@ -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
More information about the MPlayer-cvslog
mailing list