aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMisty De Meo2013-03-11 16:57:04 -0500
committerMisty De Meo2013-03-11 16:57:35 -0500
commitbeb2a318170779062eae4b990211845d4c1e6fd6 (patch)
treea433f47cf990ccaa7eecef1035d9cccb3902ed60 /Library/Formula
parent85d98e8e1b07f6fcbc1f8f911e48b64002945bac (diff)
downloadhomebrew-beb2a318170779062eae4b990211845d4c1e6fd6.tar.bz2
dpkg: add caveats
Fixes #18044.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dpkg.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/dpkg.rb b/Library/Formula/dpkg.rb
index 5c131e2fb..e2200e56a 100644
--- a/Library/Formula/dpkg.rb
+++ b/Library/Formula/dpkg.rb
@@ -27,6 +27,12 @@ class Dpkg < Formula
system "make"
system "make install"
end
+
+ def caveats; <<-EOS.undent
+ This installation of dpkg is not configured to install software, so
+ commands such as `dpkg -i`, `dpkg --configure` will fail.
+ EOS
+ end
end
__END__