dirac: fix bad cp
invocation
This Makefile target is only triggered if the tools required to build the documentation are present, which I'm guessing is why this has gone unnoticed. Will send upstream. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
5678ebc0a7
commit
713b076cdc
1 changed files with 3 additions and 0 deletions
|
@ -8,6 +8,9 @@ class Dirac < Formula
|
|||
fails_with_llvm :build => 2334
|
||||
|
||||
def install
|
||||
# BSD cp doesn't have '-d'
|
||||
inreplace 'doc/Makefile.in', 'cp -dR', 'cp -R'
|
||||
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue