aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2011-01-03 12:21:00 -0800
committerAdam Vandenberg2011-01-03 12:21:00 -0800
commite1a07a8ed76cee7579377d5ab90b4d2514bf50cf (patch)
treecb3e3df52cc76dceb1b7ec7b6e68f754b5757240
parenta5821d96a08669a6e64346e40f83bfe6c407922a (diff)
downloadhomebrew-e1a07a8ed76cee7579377d5ab90b4d2514bf50cf.tar.bz2
sdf - fix audit warning
-rw-r--r--Library/Formula/sdf.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/sdf.rb b/Library/Formula/sdf.rb
index d19a0aac0..57c6e9d72 100644
--- a/Library/Formula/sdf.rb
+++ b/Library/Formula/sdf.rb
@@ -10,9 +10,9 @@ class Sdf <Formula
def install
system "./configure", "--prefix=#{prefix}"
- # Man pages are distributed as 0B files, need to clean,
- # otherwise they won't be made properly
- FileUtils.rm %w(pgen/src/sdf2table.1 sglr/doc/sglr.1 sglr/doc/sglr-api.3)
+ # Man pages are distributed as 0B files.
+ # Delete them so they'll get recreated properly
+ rm %w(pgen/src/sdf2table.1 sglr/doc/sglr.1 sglr/doc/sglr-api.3)
system "make install"
end