Skip to content

Commit

Permalink
removed the subdirectory for the -, which is encoded in the directory…
Browse files Browse the repository at this point in the history
… structure
  • Loading branch information
brucellino committed Jan 13, 2015
1 parent 4c27abe commit 3057bf9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ mkdir -p $WORKSPACE
mkdir -p $SRC_DIR
mkdir -p $SOFT_DIR

# Download the source file

if [[ ! -e $SRC_DIR/$SOURCE_FILE ]] ; then
echo "seems like this is the first build - let's get the source"
mkdir -p $SRC_DIR
wget http://mirror.ufs.ac.za/gnu/gnu/gmp/$SOURCE_FILE -O $SRC_DIR/$SOURCE_FILE
else
echo "continuing from previous builds, using source at " $SRC_DIR/$SOURCE_FILE
tar -xvzf $SRC_DIR/$SOURCE_FILE -C $WORKSPACE
fi
cd $WORKSPACE/
cd $WORKSPACE/$NAME-$VERSION
./configure --prefix $SOFT_DIR
make -j 8

0 comments on commit 3057bf9

Please sign in to comment.