diff options
| author | Mike McQuaid | 2015-02-09 12:38:35 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2015-02-09 12:38:35 +0000 |
| commit | 7ee315fceb37114600c18cee3a1e73bd9e5e759b (patch) | |
| tree | e1446abff5033606188cd74979566da570a52c6c /Library/Formula/postgresql.rb | |
| parent | e07116a3653269da208a0d0b6d9817ab85d47e4f (diff) | |
| download | homebrew-7ee315fceb37114600c18cee3a1e73bd9e5e759b.tar.bz2 | |
postgresql: fix perl option.
Addresses comment on d3074f5bb9bb7d522bff7ad7873f03610ed15054.
Diffstat (limited to 'Library/Formula/postgresql.rb')
| -rw-r--r-- | Library/Formula/postgresql.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/postgresql.rb b/Library/Formula/postgresql.rb index 393e71224..235dce4c9 100644 --- a/Library/Formula/postgresql.rb +++ b/Library/Formula/postgresql.rb @@ -53,7 +53,7 @@ class Postgresql < Formula ] args << "--with-python" if build.with? "python" - args << "--with-perl" if build.with? "no-perl" + args << "--with-perl" if build.with? "perl" # The CLT is required to build tcl support on 10.7 and 10.8 because # tclConfig.sh is not part of the SDK |
