diff options
author | Zuxy Meng <zuxy.meng@gmail.com> | 2007-05-09 09:05:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-09 09:05:30 +0000 |
commit | 2462e4b76516ea405f525db034cd7a53816a47e0 (patch) | |
tree | cfc2ddb59c7ec4e59a88158299e0fbc6ee305c50 | |
parent | 3688f93aede7e2f37519ddbed19e4a0f57331ef5 (diff) | |
download | ffmpeg-2462e4b76516ea405f525db034cd7a53816a47e0.tar.gz |
Remove trailing / from -I flags, MinGW appears to dislike them.
patch by Zuxy Meng, zuxy.meng gmail com
Originally committed as revision 8948 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index a8a145b9ef..3a1b3089d1 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -86,7 +86,7 @@ LIBAV = ../libavformat/libavformat.a ../libavcodec/libavcodec.a ../libavutil/lib #FIXME cleanup shit below seek_test$(EXESUF): seek_test.c $(LIBAV) - $(CC) $(LDFLAGS) $(CFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavformat/ -I$(SRC_PATH)/libavcodec/ -I$(SRC_PATH)/libavutil/ -o $@ $< $(SRC_PATH)/libavformat/libavformat.a $(SRC_PATH)/libavcodec/libavcodec.a $(SRC_PATH)/libavutil/libavutil.a $(EXTRALIBS) + $(CC) $(LDFLAGS) $(CFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavutil -o $@ $< $(SRC_PATH)/libavformat/libavformat.a $(SRC_PATH)/libavcodec/libavcodec.a $(SRC_PATH)/libavutil/libavutil.a $(EXTRALIBS) DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \ $(SRC_PATH)/libavcodec/i386/dsputil_mmx_avg.h \ |