aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-10-02 20:06:53 -0500
committerJack Nagel2011-10-03 16:20:01 -0500
commit23a0f894811844ded52fd95f171a6a4710035269 (patch)
treed4f8ceb6c94dd48fdf72a2186c5545e220c58fb7 /Library
parent0fe7c1291c8e96192d30a6f4961a0967f90f3dad (diff)
downloadhomebrew-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.rb8
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