Signed-off-by: geraldo netto <[email protected]> --- ImageMagick-source/GET | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/ImageMagick-source/GET b/ImageMagick-source/GET index 65c8d2e..070fda4 100755 --- a/ImageMagick-source/GET +++ b/ImageMagick-source/GET @@ -5,16 +5,12 @@ set -e BASEDIR=$PWD BUILDDIR=$BASEDIR/build ROOTDIR=$BASEDIR/install - -if [ ! -f ImageMagick.tar.gz ]; then - wget -c http://www.imagemagick.org/download/ImageMagick.tar.gz - tar zxf ImageMagick.tar.gz -fi - SRCDIR=`echo $BASEDIR/ImageMagick-*` -mkdir -p $BUILDDIR +wget -c http://www.imagemagick.org/download/ImageMagick.tar.gz +tar zxf ImageMagick.tar.gz +mkdir -p $BUILDDIR cd $BUILDDIR CFLAGS="-fpie" CXXFLAGS="-fpie" CPPFLAGS=-fpie LDFLAGS=-pie $SRCDIR/configure --disable-openmp --enable-shared --prefix=$ROOTDIR --srcdir=$SRCDIR make -- 2.7.4 -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
