diff options
| author | Vikrant Varma | 2015-04-19 20:45:10 +0530 |
|---|---|---|
| committer | Xu Cheng | 2015-04-20 14:00:01 +0800 |
| commit | e76071d120e7f0efbbd048846f7ac291eeb2224e (patch) | |
| tree | 797d41f19453995c74e6ed277b19a81a128a4729 /Library | |
| parent | 15ec564c1cf6a7b3b16fc65d8365bbdb85fc13ee (diff) | |
| download | homebrew-e76071d120e7f0efbbd048846f7ac291eeb2224e.tar.bz2 | |
ncdd: use :shallow => false on HEAD
ncdc depends on `git describe` to set its version. This breaks[0] on a
shallow clone, so use :shallow => false.
[0] http://dev.yorhel.nl/ncdc/bug/76
Closes #38826.
Signed-off-by: Xu Cheng <xucheng@me.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ncdc.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/ncdc.rb b/Library/Formula/ncdc.rb index 66cdd12cd..f792bcce7 100644 --- a/Library/Formula/ncdc.rb +++ b/Library/Formula/ncdc.rb @@ -15,7 +15,7 @@ class Ncdc < Formula depends_on 'geoip' => :optional head do - url "git://g.blicky.net/ncdc.git" + url "git://g.blicky.net/ncdc.git", :shallow => false depends_on "autoconf" => :build depends_on "automake" => :build |
