diff options
| author | Jack Nagel | 2011-10-02 20:06:53 -0500 |
|---|---|---|
| committer | Jack Nagel | 2011-10-03 16:20:01 -0500 |
| commit | 23a0f894811844ded52fd95f171a6a4710035269 (patch) | |
| tree | d4f8ceb6c94dd48fdf72a2186c5545e220c58fb7 /Library | |
| parent | 0fe7c1291c8e96192d30a6f4961a0967f90f3dad (diff) | |
| download | homebrew-23a0f894811844ded52fd95f171a6a4710035269.tar.bz2 | |
chkrootkit: fix indentation
Also make Makefile permissions more conservative.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/chkrootkit.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/chkrootkit.rb b/Library/Formula/chkrootkit.rb index 8738a5676..c7d40fcd7 100644 --- a/Library/Formula/chkrootkit.rb +++ b/Library/Formula/chkrootkit.rb @@ -7,17 +7,17 @@ class Chkrootkit < Formula version '0.49' def install - chmod 0755, 'Makefile' # Makefile is read-only + chmod 0644, 'Makefile' # Makefile is read-only inreplace 'Makefile' do |s| - s.remove_make_var! 'STATIC' + s.remove_make_var! 'STATIC' end system "make CC=#{ENV.cc} sense" sbin.install ['check_wtmpx', 'chkdirs', 'chklastlog', 'chkproc', - 'chkrootkit', 'chkutmp', 'chkwtmp', 'ifpromisc', - 'strings-static'] + 'chkrootkit', 'chkutmp', 'chkwtmp', 'ifpromisc', + 'strings-static'] doc.install ['README', 'README.chklastlog', 'README.chkwtmp'] end |
