diff options
| author | Arne Jørgensen | 2014-02-20 21:37:38 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2014-02-20 21:51:12 -0800 |
| commit | 5c4d9e2aaa4dc3426d0048add2d4414fe298880e (patch) | |
| tree | d2408cc60fb98f9401f4857e2d3a748f2afab883 /Library/Formula/global.rb | |
| parent | 40a8c7b4e7fcc6687a908e9ed12bc1c40e606bec (diff) | |
| download | homebrew-5c4d9e2aaa4dc3426d0048add2d4414fe298880e.tar.bz2 | |
global: add gtags.conf to #{etc}.
Configure global to use #{etc} as sysconfdir instead of #{prefix}/etc.
Closes #26868.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/global.rb')
| -rw-r--r-- | Library/Formula/global.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/global.rb b/Library/Formula/global.rb index 7ae635551..8bc869d7e 100644 --- a/Library/Formula/global.rb +++ b/Library/Formula/global.rb @@ -27,6 +27,7 @@ class Global < Formula args = %W[ --disable-dependency-tracking --prefix=#{prefix} + --sysconfdir=#{etc} ] if build.with? 'exuberant-ctags' @@ -36,6 +37,8 @@ class Global < Formula system "./configure", *args system "make install" + etc.install 'gtags.conf' + # we copy these in already cd share/'gtags' do rm %w[README COPYING LICENSE INSTALL ChangeLog AUTHORS] |
