aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorFernando Ortiz2013-02-28 02:01:49 -0600
committerJack Nagel2013-04-13 01:55:53 -0500
commit3ced46240bdf6c8d63d1ca2808f213e91861a84d (patch)
tree46bf782f2780015272bec7d935e9a2d8e7646e7c /Library
parentb633a81775e9d009362f4d7255ff728b8f61acee (diff)
downloadhomebrew-3ced46240bdf6c8d63d1ca2808f213e91861a84d.tar.bz2
crosstool-ng: remove caveats and add libelf dep
Closes #18133. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/crosstool-ng.rb11
1 files changed, 1 insertions, 10 deletions
diff --git a/Library/Formula/crosstool-ng.rb b/Library/Formula/crosstool-ng.rb
index a641bac87..43031bf2f 100644
--- a/Library/Formula/crosstool-ng.rb
+++ b/Library/Formula/crosstool-ng.rb
@@ -11,6 +11,7 @@ class CrosstoolNg < Formula
depends_on 'gnu-sed'
depends_on 'gawk'
depends_on 'binutils'
+ depends_on 'libelf'
env :std
@@ -37,16 +38,6 @@ class CrosstoolNg < Formula
test do
system "#{bin}/ct-ng", "version"
end
-
- def caveats; <<-EOS.undent
- If building a cross compiler your may expirience the following error:
- error: elf.h: No such file or directory
-
- To fix it, perform the following:
- curl https://raw.github.com/gist/3769372/98e0a084470d2d6be7b4b61551ef00d44c682b4a/elf.h > elf.h
- cp -p elf.h #{HOMEBREW_PREFIX}/include/
- EOS
- end
end
__END__