diff options
| author | Jack Nagel | 2012-11-10 21:12:26 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-11-10 21:12:26 -0600 |
| commit | bdaae65b9af7e5a00c106bdbdb07992b5ad343de (patch) | |
| tree | e8d29a47ba58943fa752aa28b145dd71f766e82c /Library/Formula/cgdb.rb | |
| parent | adee5315265cc46aa6a3057071527abb16e1cd94 (diff) | |
| download | homebrew-bdaae65b9af7e5a00c106bdbdb07992b5ad343de.tar.bz2 | |
Revert "Rename readline to gnu-readline"
This reverts commit adee5315265cc46aa6a3057071527abb16e1cd94.
Turns out one of the "other things" is a dealbreaker.
We only create kegs using a formula's canonical name. However, we do not
check that this is the case when mapping existing kegs back to formula
objects, and thus a keg with a name that happens to be an alias can fool
Homebrew into thinking the canonically-named keg exists.
So anything that enumerates kegs and then tries to do stuff with the
resulting formula objects will just break. This is obviously worse than
the debugger being broken, so reverting this for the time being.
Diffstat (limited to 'Library/Formula/cgdb.rb')
| -rw-r--r-- | Library/Formula/cgdb.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/cgdb.rb b/Library/Formula/cgdb.rb index 74594d5e7..b376adb74 100644 --- a/Library/Formula/cgdb.rb +++ b/Library/Formula/cgdb.rb @@ -5,7 +5,7 @@ class Cgdb < Formula url 'http://downloads.sourceforge.net/project/cgdb/cgdb/cgdb-0.6.6/cgdb-0.6.6.tar.gz' sha1 'bf1d9a66909a03220438a4126bb39850bdbfea65' - depends_on 'gnu-readline' + depends_on 'readline' # man page for cgdb is only there to point people to the info page where all # of the actual documentation is, so skip cleaning the info to preserve the |
