aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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__