diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-17 16:32:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-17 16:32:08 +0000 |
commit | 7981555d89c16850201a0eda2aca6dc5400cf275 (patch) | |
tree | 715b5d1eb149dff860a0c32827afbc345f0b744f /libpostproc/Makefile | |
parent | a9f9cc7cc13f838298c392ea2a95294ddc402538 (diff) | |
download | ffmpeg-7981555d89c16850201a0eda2aca6dc5400cf275.tar.gz |
Move all internal -I parameters to the front of CFLAGS to avoid using external
header files that happen to have the same name as internal ones.
Originally committed as revision 6016 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/Makefile')
-rw-r--r-- | libpostproc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpostproc/Makefile b/libpostproc/Makefile index b6ac1a6f91..c7bbdc1434 100644 --- a/libpostproc/Makefile +++ b/libpostproc/Makefile @@ -15,7 +15,7 @@ SHARED_OBJS=postprocess_pic.o HEADERS = postprocess.h -CFLAGS = $(OPTFLAGS) -I.. -I$(SRC_PATH)/libavcodec +CFLAGS = -I.. -I$(SRC_PATH)/libavcodec $(OPTFLAGS) # -I/usr/X11R6/include/ include $(SRC_PATH)/common.mak |