Mercurial > libavformat.hg
diff Makefile @ 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 | 9a18db8b5ae2 |
children | 21a5cb38dd5e |
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 $@ $<