[Ffmpeg-cvslog] CVS: ffmpeg/libavutil Makefile,1.3,1.4
Diego Biurrun CVS
diego
Mon Nov 7 02:32:31 CET 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavutil
In directory mail:/var2/tmp/cvs-serv24477/libavutil
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/libavutil/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile 26 Sep 2005 10:05:13 -0000 1.3
+++ Makefile 7 Nov 2005 01:32:29 -0000 1.4
@@ -84,8 +84,8 @@
$(SRC_PATH)/libavutil/rational.h \
$(SRC_PATH)/libavutil/intfloat_readwrite.h \
"$(prefix)/include/ffmpeg"
- install -d $(libdir)/pkgconfig
- install -m 644 ../libavutil.pc $(libdir)/pkgconfig
+ install -d "$(libdir)/pkgconfig"
+ install -m 644 ../libavutil.pc "$(libdir)/pkgconfig"
#
# include dependency files if they exist
More information about the ffmpeg-cvslog
mailing list