diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-07-01 21:50:08 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-07-01 21:52:08 +0200 |
commit | d6902798d12f94f12fb75f97213a0d25532f7252 (patch) | |
tree | c2146871f3681158c718c15f3725498debfe6d57 /gnu/packages/music.scm | |
parent | d231bb3575472561c9b715f2b797aae110e065c5 (diff) | |
download | guix-d6902798d12f94f12fb75f97213a0d25532f7252.tar guix-d6902798d12f94f12fb75f97213a0d25532f7252.tar.gz |
gnu: powertabeditor: Replace "gcc" with "libiberty".
* gnu/packages/music.scm (powertabeditor)[inputs]: Replace "gcc" with
"libiberty".
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 4b1f92fcdb..8583c89ef6 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -367,7 +367,7 @@ your own lessons.") (string-append "target_link_libraries(" target " " (assoc-ref inputs "binutils") "/lib/libbfd.a " - (assoc-ref inputs "gcc") + (assoc-ref inputs "libiberty") "/lib/libiberty.a " "dl"))) #t))))) @@ -376,7 +376,7 @@ your own lessons.") ("alsa-lib" ,alsa-lib) ("qt" ,qt) ("withershins" ,withershins) - ("gcc" ,gcc-4.8 "lib") ;for libiberty.a (for withershins) + ("libiberty" ,libiberty) ;for withershins ("binutils" ,binutils) ;for -lbfd and -liberty (for withershins) ("timidity" ,timidity++) ("pugixml" ,pugixml) |