Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mmccann committed Jun 17, 2014
1 parent 2e15cbb commit 739ae45
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 32,322 deletions.
5 changes: 4 additions & 1 deletion BuildTools/centos/build64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,11 @@ install_library()
echo $LIB_FILENAME

cd $DOWNLOAD_HOME
if ! [ -d "$LIB_NAME" ] ; then
if ! [ -f "$LIB_FILENAME" ] ; then
curl -O $LIB_URL
fi

if ! [ -d "$LIB_NAME" ] ; then
tar -xf $LIB_FILENAME
fi

Expand Down
6 changes: 5 additions & 1 deletion BuildTools/macosx/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,12 @@ install_library()
echo $LIB_FILENAME

cd $DOWNLOAD_HOME
if ! [ -d "$LIB_NAME" ] ; then

if ! [ -f "$LIB_FILENAME" ] ; then
curl -O $LIB_URL
fi

if ! [ -d "$LIB_NAME" ] ; then
tar -xf $LIB_FILENAME
fi

Expand Down
8 changes: 5 additions & 3 deletions BuildTools/ubuntu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ install_library()
echo $LIB_FILENAME

cd $DOWNLOAD_HOME

if ! [ -f "$LIB_FILENAME" ] ; then
curl -O $LIB_URL
fi

if ! [ -d "$LIB_NAME" ] ; then
if ! [ -f "$LIB_FILENAME" ] ; then
curl -O $LIB_URL
fi
tar -xf $LIB_FILENAME
fi

Expand Down
8 changes: 5 additions & 3 deletions BuildTools/ubuntu/build64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ install_library()
echo $LIB_FILENAME

cd $DOWNLOAD_HOME

if ! [ -f "$LIB_FILENAME" ] ; then
curl -O $LIB_URL
fi

if ! [ -d "$LIB_NAME" ] ; then
if ! [ -f "$LIB_FILENAME" ] ; then
curl -O $LIB_URL
fi
tar -xf $LIB_FILENAME
fi

Expand Down
Loading

0 comments on commit 739ae45

Please sign in to comment.