diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-07 09:22:44 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-07 09:22:44 +0000 |
commit | cbeee4d8e5be247ab8eea3eeda95b08d208b2908 (patch) | |
tree | f8e4d80eb511de11e43ddf4158108deb7d49236d /libavutil/Makefile | |
parent | 4aad0d6db62813c8f83a90fd3f9cac8196052cfd (diff) | |
download | ffmpeg-cbeee4d8e5be247ab8eea3eeda95b08d208b2908.tar.gz |
Replace -I../-I. by -I$(BUILD_ROOT).
Originally committed as revision 6572 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 045041465f..b46c6271c0 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -3,8 +3,7 @@ # include ../config.mak -# NOTE: -I.. is needed to include config.h -CFLAGS=-DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I.. $(OPTFLAGS) \ +CFLAGS=-DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I$(BUILD_ROOT) $(OPTFLAGS) \ -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE OBJS= mathematics.o \ |