# HG changeset patch # User diego # Date 1131327149 0 # Node ID 3637f3d43e55623a5745fee351c36364fbccc55a # Parent 16df90bf46fdd47bf9e7861acea9958d98ed061c 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 > diff -r 16df90bf46fd -r 3637f3d43e55 Makefile --- 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 $@ $<