mirror of https://git.ffmpeg.org/ffmpeg.git
libpostproc installs into a different directory that needs to be created.
Originally committed as revision 4991 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a050253f8c
commit
a44a8bb818
|
@ -3,6 +3,9 @@ include ../../config.mak
|
|||
|
||||
VPATH=$(SRC_PATH)/libavcodec/libpostproc
|
||||
|
||||
# Overload incdir, postproc include files go in a different directory.
|
||||
incdir=$(prefix)/include/postproc
|
||||
|
||||
NAME=postproc
|
||||
ifeq ($(BUILD_SHARED),yes)
|
||||
LIBVERSION=$(SPPVERSION)
|
||||
|
@ -65,7 +68,8 @@ install-lib-static: $(LIB)
|
|||
install -m 644 $(LIB) "$(libdir)"
|
||||
|
||||
install-headers:
|
||||
install -m 644 postprocess.h $(prefix)/include/postproc/postprocess.h
|
||||
install -d $(incdir)
|
||||
install -m 644 postprocess.h $(incdir)/postprocess.h
|
||||
install -m 644 $(SRC_PATH)/libpostproc.pc $(libdir)/pkgconfig
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue