diff options
author | Andreas Enge <andreas@enge.fr> | 2013-11-01 21:08:26 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-11-01 21:08:26 +0100 |
commit | 798e4f42b37d90efb24ff3004189ef94d78b3a64 (patch) | |
tree | 18c9a1fa71fbe9c6a6c372767ab5b24f5e9020eb /gnu/packages/video.scm | |
parent | 39efcc9b3a5deda210c0f7a0031e331ee24a4c0a (diff) | |
download | guix-798e4f42b37d90efb24ff3004189ef94d78b3a64.tar guix-798e4f42b37d90efb24ff3004189ef94d78b3a64.tar.gz |
gnu: ffmpeg: Fix typo in configure flags.
* gnu/packages/video.scm (ffmpeg): Add "d" in "3d" in configure flags.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 20c73d14fe..aba68dd71c 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -139,8 +139,8 @@ (or (%current-target-system) (%current-system))) '() - '("--disable-amd3now" - "--disable-amd3nowext" + '("--disable-amd3dnow" + "--disable-amd3dnowext" "--disable-mmx" "--disable-mmxext" "--disable-sse" |