From ba0b17fbcaf90696c3f999bc96a0eaea054604f8 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Wed, 20 Jan 2010 19:52:08 +0200 Subject: [PATCH] ffmpeg-config: use --cpu=host Replace the custom hack --cpu=native with --cpu=host that is now supported by FFmpeg upstream. --- script/ffmpeg-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/ffmpeg-config b/script/ffmpeg-config index e0cadf3..1b7c77b 100755 --- a/script/ffmpeg-config +++ b/script/ffmpeg-config @@ -16,7 +16,7 @@ def main(): args = ['--prefix=%s/build_libs' % mydir, '--enable-gpl', - '--cpu=native', + '--cpu=host', '--disable-debug', '--enable-pthreads', '--disable-shared', '--enable-static', -- 2.11.4.GIT