changeset 871:3637f3d43e55 libavformat

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 >
author diego
date Mon, 07 Nov 2005 01:32:29 +0000
parents 16df90bf46fd
children 441c59f95305
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Nov 05 00:10:22 2005 +0000
+++ b/Makefile	Mon Nov 07 01:32:29 2005 +0000
@@ -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 $@ $<