lockrun: fix audit

lockrun:
  * Use `system "#{ENV.cc}", "#{ENV.cflags}", "lockrun.c", "-o", "lockrun"` instead of `system "#{ENV.cc} #{ENV.cflags} lockrun.c -o lockrun"`
master
Miguel Araújo 2017-02-12 07:50:40 -03:00 committed by Mike McQuaid
parent 24c6828f25
commit 635bba4043
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class Lockrun < Formula
end
def install
system "#{ENV.cc} #{ENV.cflags} lockrun.c -o lockrun"
system ENV.cc, ENV.cflags, "lockrun.c", "-o", "lockrun"
bin.install "lockrun"
end
end