diff options
| author | Anton Rieder | 2013-03-24 01:17:40 +0100 |
|---|---|---|
| committer | Jack Nagel | 2013-04-04 17:15:22 -0500 |
| commit | 9e776ee076e21cf2c9bee8a4e387fc175a240035 (patch) | |
| tree | a8de9e2442509241fd8c88950a21fcea3e64eb6b | |
| parent | 769519dc8360ce4c0efa5ab124c6122abfa0b25e (diff) | |
| download | homebrew-9e776ee076e21cf2c9bee8a4e387fc175a240035.tar.bz2 | |
gnu-sed: Add caveat about "g" prefix
Closes #18689.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/gnu-sed.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/gnu-sed.rb b/Library/Formula/gnu-sed.rb index 8df6e36ca..9e711a3ad 100644 --- a/Library/Formula/gnu-sed.rb +++ b/Library/Formula/gnu-sed.rb @@ -15,4 +15,11 @@ class GnuSed < Formula system "./configure", *args system "make install" end + + def caveats; <<-EOS.undent + The command has been installed with the prefix 'g'. + If you do not want the prefix, install using the 'default-names' option. + EOS + end + end |
