diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-08-25 16:10:49 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-08-25 16:10:49 +0300 |
commit | eaaeb8f14c16250143a85844160900aa7da8c5c7 (patch) | |
tree | 454157343a5d56b31dfd8e9c61c3f5376608e9c3 /gnu | |
parent | dac7dd1b0b40c9f8c81b5147c68f6387c2b16bfd (diff) | |
download | guix-eaaeb8f14c16250143a85844160900aa7da8c5c7.tar.gz guix-eaaeb8f14c16250143a85844160900aa7da8c5c7.zip |
gnu: audacity: Fix typo.
* gnu/packages/audio.scm (audacity)[arguments]: Check for the 'x86_64'
architecture.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/audio.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 91da5cd4f9..631b935f5e 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -766,7 +766,7 @@ engineers, musicians, soundtrack editors and composers.") ;; SSE instructions are available on Intel systems only. ,@(if (any (cute string-prefix? <> (or (%current-target-system) (%current-system))) - '("x64_64" "i686")) + '("x86_64" "i686")) '() '("--enable-sse=no")) ;; portmidi, libid3tag and libmad provide no .pc files, so |