|
|
@ -74,7 +74,7 @@ script: | |
|
|
|
|
|
|
|
|
|
|
|
# Create the release tarball using (arbitrarily) the first host |
|
|
|
# Create the release tarball using (arbitrarily) the first host |
|
|
|
./autogen.sh |
|
|
|
./autogen.sh |
|
|
|
./configure --prefix=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'` |
|
|
|
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/ |
|
|
|
make dist |
|
|
|
make dist |
|
|
|
SOURCEDIST=`echo bitcoin-*.tar.gz` |
|
|
|
SOURCEDIST=`echo bitcoin-*.tar.gz` |
|
|
|
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'` |
|
|
|
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'` |
|
|
@ -95,11 +95,11 @@ script: | |
|
|
|
mkdir -p ${INSTALLPATH} |
|
|
|
mkdir -p ${INSTALLPATH} |
|
|
|
tar --strip-components=1 -xf ../$SOURCEDIST |
|
|
|
tar --strip-components=1 -xf ../$SOURCEDIST |
|
|
|
|
|
|
|
|
|
|
|
./configure --prefix=${BASEPREFIX}/${i} --bindir=${INSTALLPATH}/bin --includedir=${INSTALLPATH}/include --libdir=${INSTALLPATH}/lib --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS} |
|
|
|
CONFIG_SITE=${BASEPREFIX}/${i}/share/config.site ./configure --prefix=/ --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS} |
|
|
|
make ${MAKEOPTS} |
|
|
|
make ${MAKEOPTS} |
|
|
|
make ${MAKEOPTS} -C src check-security |
|
|
|
make ${MAKEOPTS} -C src check-security |
|
|
|
make ${MAKEOPTS} -C src check-symbols |
|
|
|
make ${MAKEOPTS} -C src check-symbols |
|
|
|
make install-strip |
|
|
|
make install-strip DESTDIR=${INSTALLPATH} |
|
|
|
cd installed |
|
|
|
cd installed |
|
|
|
find . -name "lib*.la" -delete |
|
|
|
find . -name "lib*.la" -delete |
|
|
|
find . -name "lib*.a" -delete |
|
|
|
find . -name "lib*.a" -delete |
|
|
|