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:
Jack Nagel 2012-01-23 22:22:27 -06:00
parent 5678ebc0a7
commit 713b076cdc

View file

@ -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