sdf - fix audit warning

master
Adam Vandenberg 2011-01-03 12:21:00 -08:00
parent eff831ba00
commit 68a6e10368
1 changed files with 3 additions and 3 deletions

View File

@ -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