You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-06 08:29:25 +02:00
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 > Originally committed as revision 4680 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Diego Biurrun
parent
7c017693c9
commit
25f8db58ee
@@ -130,8 +130,8 @@ install-headers:
|
||||
$(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 $@ $<
|
||||
|
||||
Reference in New Issue
Block a user