From 249265102ebb3d576623973837dc6f9b34da2e10 Mon Sep 17 00:00:00 2001
From: sorawee <sorawee.p@brown.edu>
Date: Mon, 15 Feb 2016 22:52:23 -0500
Subject: [PATCH] Add /Library/TeX/texbin as another candidate-dir

MacTeX, TeX for Mac, will install the binaries at `/Library/TeX`. Hence, we should add this path to the candidate-dirs.
---
 scribble-lib/scribble/private/run-pdflatex.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scribble-lib/scribble/private/run-pdflatex.rkt b/scribble-lib/scribble/private/run-pdflatex.rkt
index 4f601c5f..0bae4eab 100644
--- a/scribble-lib/scribble/private/run-pdflatex.rkt
+++ b/scribble-lib/scribble/private/run-pdflatex.rkt
@@ -92,4 +92,4 @@
 ;; here so that the "scribble pdf" button is more 
 ;; likely to work in drracket
 (define macosx-candidate-dirs
-  '("/usr/texbin"))
+  '("/usr/texbin" "/Library/TeX/texbin"))