From 15a750769e1c532e02fa212f56d8861571fc362b Mon Sep 17 00:00:00 2001 From: Franklin Chen Date: Fri, 24 Jul 2015 23:56:48 -0400 Subject: [PATCH] noweb (fix formula) No files from the `icon` directory were not being installed. This prevented correct functionality. Now they are installed. --- Formula/noweb.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Formula/noweb.rb b/Formula/noweb.rb index 3d180c62d2..a415644f1d 100644 --- a/Formula/noweb.rb +++ b/Formula/noweb.rb @@ -31,6 +31,12 @@ class Noweb < Formula "LIB=#{lib}", "MAN=#{man}", "TEXINPUTS=#{texmf}/tex/generic/noweb" + cd "icon" do + system "make", "install", "BIN=#{bin}", + "LIB=#{lib}", + "MAN=#{man}", + "TEXINPUTS=#{texmf}/tex/generic/noweb" + end end end end