Commit a44a8bb8 authored by Diego Biurrun's avatar Diego Biurrun

libpostproc installs into a different directory that needs to be created.

Originally committed as revision 4991 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a050253f
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment