diff options
| author | Steven Willis | 2015-04-07 15:07:27 -0400 | 
|---|---|---|
| committer | Mike McQuaid | 2015-04-08 13:53:32 +0100 | 
| commit | 84aabd2420bd87a280cc1b3e7cf9740bbf56057d (patch) | |
| tree | 4e38fe7f05e4d9916ad415ae871a653a199030bb /Library/Formula/coreutils.rb | |
| parent | d0b49fe43f0997869b5f3e9a922338460971d0fd (diff) | |
| download | homebrew-84aabd2420bd87a280cc1b3e7cf9740bbf56057d.tar.bz2 | |
coreutils: install realpath without prefix
Closes #38444.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/coreutils.rb')
| -rw-r--r-- | Library/Formula/coreutils.rb | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/Library/Formula/coreutils.rb b/Library/Formula/coreutils.rb index 4d5647ca9..f2678ecc6 100644 --- a/Library/Formula/coreutils.rb +++ b/Library/Formula/coreutils.rb @@ -57,6 +57,10 @@ class Coreutils < Formula      coreutils_filenames(man1).each do |cmd|        (libexec/"gnuman"/"man1").install_symlink man1/"g#{cmd}" => cmd      end + +    # Symlink non-conflicting binaries +    bin.install_symlink "grealpath" => "realpath" +    man1.install_symlink "grealpath.1" => "realpath.1"    end    def caveats; <<-EOS.undent | 
