diff options
| author | David Höppner | 2010-11-22 19:38:18 +0100 |
|---|---|---|
| committer | David Höppner | 2010-11-22 19:38:18 +0100 |
| commit | 049f7e443e3334a79ff4c2e31b8d05ab148b5bc1 (patch) | |
| tree | 84d745dc21bd3d22bc0ded60f333003ff4a19cce | |
| parent | 212ec8ef630fbe0e89c5e66aca91344419706ca0 (diff) | |
| download | homebrew-049f7e443e3334a79ff4c2e31b8d05ab148b5bc1.tar.bz2 | |
Fixes #3320
| -rw-r--r-- | Library/Formula/ssss.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/ssss.rb b/Library/Formula/ssss.rb index 6e3c8aed6..285d7db3a 100644 --- a/Library/Formula/ssss.rb +++ b/Library/Formula/ssss.rb @@ -11,7 +11,7 @@ class Ssss <Formula def install inreplace 'Makefile' do |s| # Compile with -DNOMLOCK to avoid warning on every run on OS X. - s.gsub! /\-W/, '-W -DNOMLOCK $(CFLAGS) $(LDFLAGS)' + s.gsub! /\-W /, '-W -DNOMLOCK $(CFLAGS) $(LDFLAGS)' s.change_make_var! "CC", ENV.cc end @@ -21,4 +21,4 @@ class Ssss <Formula man1.install %w{ ssss.1 } bin.install %w{ ssss-combine ssss-split } end -end
\ No newline at end of file +end |
