# HG changeset patch # User diego # Date 1131327149 0 # Node ID ba9c17abb24bc813c4f95c3bc61d95098ad3ce0c # Parent 6c737a845f5e375faacb317cb84b222b7981d82a 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 6c737a845f5e -r ba9c17abb24b Makefile --- a/Makefile Sat Nov 05 19:03:07 2005 +0000 +++ b/Makefile Mon Nov 07 01:32:29 2005 +0000 @@ -494,8 +494,8 @@ mkdir -p "$(prefix)/include/ffmpeg" install -m 644 $(SRC_PATH)/libavcodec/avcodec.h \ "$(prefix)/include/ffmpeg" - install -d $(libdir)/pkgconfig - install -m 644 ../libavcodec.pc $(libdir)/pkgconfig + install -d "$(libdir)/pkgconfig" + install -m 644 ../libavcodec.pc "$(libdir)/pkgconfig" # # include dependency files if they exist