File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed
Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,10 @@ OPT="-g -O0"
2828
2929installdir=` pwd` /install
3030
31+ # add latest autotools to our path
32+ toolspath=` pwd` /autotools/install/bin
33+ export PATH=" ${toolspath} :$PATH "
34+
3135mkdir -p deps
3236cd deps
3337
@@ -66,44 +70,59 @@ export PATH=${toolsdir}/bin:$PATH
6670
6771# build dependencies
6872pushd libcircle.git
73+ git pull origin master
74+ git pull --tags origin master
75+ git checkout v0.1.0-rc.1
6976 export CFLAGS=${OPT}
7077 ./configure \
71- --prefix=$installdir && \
78+ --prefix=$installdir \
79+ --disable-silent-rules && \
7280 make VERBOSE=1 && \
7381 make VERBOSE=1 install
7482 if [ $? -ne 0 ]; then
7583 echo " failed to configure, build, or install libcircle"
7684 exit 1
7785 fi
86+ git checkout master
7887popd
7988
8089pushd lwgrp.git
90+ git pull origin master
91+ git pull --tags origin master
92+ git checkout v1.0.1
8193# make distclean
8294# ./autogen.sh
8395 export CFLAGS=${OPT}
8496 ./configure \
85- --prefix=${installdir} && \
97+ --prefix=${installdir} \
98+ --disable-silent-rules && \
8699 make && \
87100 make install
88101 if [ $? -ne 0 ]; then
89102 echo " failed to configure, build, or install liblwgrp"
90103 exit 1
91104 fi
105+ git checkout master
92106popd
93107
94108pushd dtcmp.git
109+ git pull origin master
110+ git pull --tags origin master
111+ git checkout v1.0.1
95112# make distclean
96113# ./autogen.sh
97114 export CFLAGS=${OPT}
98115 ./configure \
99116 --prefix=${installdir} \
117+ --disable-silent-rules \
100118 --with-lwgrp=${installdir} && \
101119 make && \
102120 make install
103121 if [ $? -ne 0 ]; then
104122 echo " failed to configure, build, or install libdtcmp"
105123 exit 1
106124 fi
125+ git checkout master
107126popd
108127
109128rm -rf libarchive-3.1.2
You can’t perform that action at this time.
0 commit comments