confuse: fix test on 10.13 (#15286)

no /usr/local/lib for you
This commit is contained in:
ilovezfs 2017-07-04 18:06:23 -07:00 committed by GitHub
parent 5a201a3687
commit 7f016d9a63

View file

@ -40,7 +40,7 @@ class Confuse < Formula
return 0;
}
EOS
system ENV.cc, "test.c", "-lconfuse", "-o", "test"
system ENV.cc, "test.c", "-L#{lib}", "-lconfuse", "-o", "test"
assert_match /world/, shell_output("./test")
end
end