diff options
| author | Adam Vandenberg | 2011-10-18 10:01:52 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-10-18 10:01:52 -0700 |
| commit | 8b386055e210dd863de6c7d4af892cce644804b6 (patch) | |
| tree | 384c5ed5f94b2c7ec27050914f4ba3da4c923f12 /Library/Formula | |
| parent | bb6a5df758c947f527791035d3502b9defa4dc04 (diff) | |
| download | homebrew-8b386055e210dd863de6c7d4af892cce644804b6.tar.bz2 | |
fix audit warnings
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/avra.rb | 10 | ||||
| -rw-r--r-- | Library/Formula/fex.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/staticrouted.rb | 14 |
3 files changed, 13 insertions, 13 deletions
diff --git a/Library/Formula/avra.rb b/Library/Formula/avra.rb index ea44a4d70..76fe4482a 100644 --- a/Library/Formula/avra.rb +++ b/Library/Formula/avra.rb @@ -7,11 +7,11 @@ class Avra < Formula def install # build fails if these don't exist - system "touch NEWS ChangeLog" + system "touch NEWS ChangeLog" Dir.chdir "src" do - system "./bootstrap" - system "./configure --prefix=#{prefix}" - system "make install" - end + system "./bootstrap" + system "./configure --prefix=#{prefix}" + system "make install" + end end end diff --git a/Library/Formula/fex.rb b/Library/Formula/fex.rb index 541d53a30..f0b106a79 100644 --- a/Library/Formula/fex.rb +++ b/Library/Formula/fex.rb @@ -7,6 +7,6 @@ class Fex < Formula def install ENV['PREFIX'] = prefix - system "make install" + system "make install" end end diff --git a/Library/Formula/staticrouted.rb b/Library/Formula/staticrouted.rb index cd155ed7c..f6a4be8c3 100644 --- a/Library/Formula/staticrouted.rb +++ b/Library/Formula/staticrouted.rb @@ -16,17 +16,17 @@ class Staticrouted < Formula def caveats; <<-EOS.undent If this is your first install, automatically load on login with: - sudo mkdir -p /Library/LaunchDaemons - sudo cp #{prefix}/com.coriolis-systems.staticrouted.plist /Library/LaunchDaemons/ - sudo launchctl load -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist + sudo mkdir -p /Library/LaunchDaemons + sudo cp #{prefix}/com.coriolis-systems.staticrouted.plist /Library/LaunchDaemons/ + sudo launchctl load -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist If this is an upgrade and you already have the com.coriolis-systems.staticrouted.plist loaded: - sudo launchctl unload -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist - sudo cp #{prefix}/com.coriolis-systems.staticrouted.plist /Library/LaunchDaemons/ - sudo launchctl load -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist + sudo launchctl unload -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist + sudo cp #{prefix}/com.coriolis-systems.staticrouted.plist /Library/LaunchDaemons/ + sudo launchctl load -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist Or start it manually: - sudo staticrouted + sudo staticrouted EOS end end |
