[Ffmpeg-cvslog] CVS: ffmpeg/libavformat Makefile,1.101,1.102

Diego Biurrun CVS diego
Mon Nov 7 02:32:31 CET 2005


Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv24477/libavformat

Modified Files:
	Makefile 
Log Message:
Put double-quotes around the install path in the "install-headers" section
of the makefiles for libavcodec, libavformat and libavutil.
Fixes installing into paths with spaces in them, i.e. Windows.
patch by Fredrik Orderud < fredrik . orderud -- at -- idi . ntnu . no >


Index: Makefile
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/Makefile,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -d -r1.101 -r1.102
--- Makefile	4 Oct 2005 11:19:08 -0000	1.101
+++ Makefile	7 Nov 2005 01:32:29 -0000	1.102
@@ -130,8 +130,8 @@
                 $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
                 $(SRC_PATH)/libavformat/rtspcodes.h \
                 "$(prefix)/include/ffmpeg"
-	install -d $(libdir)/pkgconfig
-	install -m 644 ../libavformat.pc $(libdir)/pkgconfig
+	install -d "$(libdir)/pkgconfig"
+	install -m 644 ../libavformat.pc "$(libdir)/pkgconfig"
 
 %.o: %.c
 	$(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< 





More information about the ffmpeg-cvslog mailing list