From 291bd1c9dbe90cd8e1b29651c39a4cddd5f6df33 Mon Sep 17 00:00:00 2001 From: Blake Thompson Date: Mon, 4 May 2015 11:35:09 -0500 Subject: [PATCH] Fix directories --- mason_latest.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mason_latest.sh b/mason_latest.sh index 0ce5aa61c..cc4a970aa 100755 --- a/mason_latest.sh +++ b/mason_latest.sh @@ -15,7 +15,8 @@ function mason_compile { make install if [[ `uname` == 'Darwin' ]]; then install_name_tool -id @loader_path/libmapnik.dylib ${MASON_PREFIX}"/lib/libmapnik.dylib"; - for f in ${MASON_PREFIX}"/lib/mapnik/input/*.input"; do + PLUGINDIR=${MASON_PREFIX}"/lib/mapnik/input/*.input"; + for f in $PLUGINDIR; do echo $f; echo `basename $f`; install_name_tool -id plugins/input/`basename $f` $f;