From 1840b280592b31ae59b5fac79eb1478ef81ec75c Mon Sep 17 00:00:00 2001
From: Vitor Sessak <vitor1001@gmail.com>
Date: Mon, 19 Apr 2010 13:05:26 +0000
Subject: [PATCH] Makefile: make fate target depend on compiling ffmpeg

Originally committed as revision 22912 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 48df7670c3..18ab3a6d00 100644
--- a/Makefile
+++ b/Makefile
@@ -342,7 +342,7 @@ tests/seek_test$(EXESUF): tests/seek_test.o $(FF_DEP_LIBS)
 ifdef SAMPLES
 include $(SRC_PATH_BARE)/tests/fate.mak
 fate: $(FATE_TESTS)
-$(FATE_TESTS):
+$(FATE_TESTS): ffmpeg$(EXESUF)
 	@echo "TEST FATE   $(@:fate-%=%)"
 	@$(SRC_PATH)/tests/fate-run.sh $@ "$(SAMPLES)" "$(TARGET_EXEC)" "$(TARGET_PATH)" '$(CMD)'
 else