Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-06-18 03:29:35 +0400
committerMåns Rullgård <mans@mansr.com>2007-06-18 03:29:35 +0400
commitaa45201dd583b0e6fd0d262c50fe7931f9bb6d9b (patch)
treea9bc9d2ec8ffac869ac98d2f49860e76bc7f00e3 /configure
parent0db2ce7770bc22044a115d263e09414ed9b07adc (diff)
fix thread support selection
Originally committed as revision 9358 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index b76ae7c719..424938e19a 100755
--- a/configure
+++ b/configure
@@ -1553,7 +1553,7 @@ fi
for thread in $THREADS_LIST; do
if enabled $thread; then
- if ! disabled thread_type ; then
+ if test -n "$thread_type"; then
die "ERROR: Only one thread type must be selected."
else
thread_type="$thread"