aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-12-02 21:58:05 -0800
committerAdam Vandenberg2013-12-02 21:58:05 -0800
commit6fd6a54e88f2f4e67057a53467f10b9e93a897b1 (patch)
tree6752a4f8e4a1bfa2cc02f5932deca1f54211b330 /Library
parentdc37866ee8adc1e1d8e17c682f7d670399997a57 (diff)
downloadhomebrew-6fd6a54e88f2f4e67057a53467f10b9e93a897b1.tar.bz2
samba: keep needed dirs
Closes #24870.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/samba.rb5
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