forked from FFmpeg/FFmpeg
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@mansr.com>
This commit is contained in:
parent
f7653904c8
commit
906fd03070
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -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(){
|
||||
|
|
Loading…
Add table
Reference in a new issue