[FFmpeg-cvslog] fate: fix partial run when no samples path is specified

Mans Rullgard git at videolan.org
Mon Apr 4 03:01:17 CEST 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sun Apr  3 23:12:16 2011 +0100| [906fd03070c7dc39b4c937befa2c3559bccf7ba7] | committer: Mans Rullgard

fate: fix partial run when no samples path is specified

This restores the behaviour of running only the builtin
regression tests when no path to external samples is given.
aa3805a inadvertently broke this by always setting SAMPLES
to something.  Using := makes the ifdef test work as expected
when the FATE_SAMPLES environment variable is empty.

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=906fd03070c7dc39b4c937befa2c3559bccf7ba7
---

 configure |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure b/configure
index dbcada5..e86f193 100755
--- a/configure
+++ b/configure
@@ -3270,7 +3270,7 @@ SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
 SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}
 SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}
-SAMPLES=${samples:-\$(FATE_SAMPLES)}
+SAMPLES:=${samples:-\$(FATE_SAMPLES)}
 EOF
 
 get_version(){



More information about the ffmpeg-cvslog mailing list