diff options
| author | Adam Vandenberg | 2013-12-02 21:58:05 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-12-02 21:58:05 -0800 |
| commit | 6fd6a54e88f2f4e67057a53467f10b9e93a897b1 (patch) | |
| tree | 6752a4f8e4a1bfa2cc02f5932deca1f54211b330 /Library/Formula | |
| parent | dc37866ee8adc1e1d8e17c682f7d670399997a57 (diff) | |
| download | homebrew-6fd6a54e88f2f4e67057a53467f10b9e93a897b1.tar.bz2 | |
samba: keep needed dirs
Closes #24870.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/samba.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/samba.rb b/Library/Formula/samba.rb index e0cdebf85..218de3c2d 100644 --- a/Library/Formula/samba.rb +++ b/Library/Formula/samba.rb @@ -7,6 +7,9 @@ class Samba < Formula conflicts_with 'talloc', :because => 'both install `include/talloc.h`' + skip_clean 'private' + skip_clean 'var/locks' + # Fixes the Grouplimit of 16 users os OS X. # Bug has been raised upstream: # https://bugzilla.samba.org/show_bug.cgi?id=8773 @@ -24,6 +27,8 @@ class Samba < Formula system "make install" (prefix/'etc').mkpath touch prefix/'etc/smb.conf' + (prefix/'private').mkpath + (var/'locks').mkpath end end end |
