From b1d2a364d7139b975bbd1696b3496b4fa4cb84b1 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 11 Feb 2006 16:17:27 +0000 Subject: [PATCH] Install libpostproc headers if CONFIG_PP is set. Originally committed as revision 4975 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 18bdda1..33dd84d 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -534,6 +534,9 @@ install-headers: "$(prefix)/include/ffmpeg" install -d "$(libdir)/pkgconfig" install -m 644 ../libavcodec.pc "$(libdir)/pkgconfig" +ifeq ($(CONFIG_PP),yes) + $(MAKE) -C libpostproc $@ +endif # # include dependency files if they exist -- 2.7.4