Skip to content

Commit 291bd1c

Browse files
committedMay 4, 2015
Fix directories
1 parent 9439279 commit 291bd1c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎mason_latest.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ function mason_compile {
1515
make install
1616
if [[ `uname` == 'Darwin' ]]; then
1717
install_name_tool -id @loader_path/libmapnik.dylib ${MASON_PREFIX}"/lib/libmapnik.dylib";
18-
for f in ${MASON_PREFIX}"/lib/mapnik/input/*.input"; do
18+
PLUGINDIR=${MASON_PREFIX}"/lib/mapnik/input/*.input";
19+
for f in $PLUGINDIR; do
1920
echo $f;
2021
echo `basename $f`;
2122
install_name_tool -id plugins/input/`basename $f` $f;

0 commit comments

Comments
 (0)
Please sign in to comment.