From 9ec2423d04a799ca4a280b9faeaf33d0c28adad0 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Fri, 4 Jan 2013 20:45:18 -0800 Subject: [PATCH] nasm: limit make targets nasm can try and fail to build PDF documentation, which will cause the install to fail. Use the same make targets as MacPorts. --- Formula/nasm.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Formula/nasm.rb b/Formula/nasm.rb index 92a3aefaed3..41ef82c56cc 100644 --- a/Formula/nasm.rb +++ b/Formula/nasm.rb @@ -10,7 +10,6 @@ class Nasm < Formula def install ENV.universal_binary if build.universal? system "./configure", "--prefix=#{prefix}" - system "make everything" - system "make install_everything" + system "make install install_rdf" end end