File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
contrib/gitian-descriptors Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ script: |
74
74
75
75
# Create the release tarball using (arbitrarily) the first host
76
76
./autogen.sh
77
- ./configure --prefix =${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`
77
+ CONFIG_SITE =${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
78
78
make dist
79
79
SOURCEDIST=`echo bitcoin-*.tar.gz`
80
80
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
@@ -95,11 +95,11 @@ script: |
95
95
mkdir -p ${INSTALLPATH}
96
96
tar --strip-components=1 -xf ../$SOURCEDIST
97
97
98
- ./configure --prefix =${BASEPREFIX}/${i} --bindir=${INSTALLPATH}/bin --includedir=${INSTALLPATH}/include --libdir=${INSTALLPATH}/lib --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS}
98
+ CONFIG_SITE =${BASEPREFIX}/${i}/share/config.site ./configure --prefix=/ --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS}
99
99
make ${MAKEOPTS}
100
100
make ${MAKEOPTS} -C src check-security
101
101
make ${MAKEOPTS} -C src check-symbols
102
- make install-strip
102
+ make install-strip DESTDIR=${INSTALLPATH}
103
103
cd installed
104
104
find . -name "lib*.la" -delete
105
105
find . -name "lib*.a" -delete
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ script: |
90
90
91
91
# Create the release tarball using (arbitrarily) the first host
92
92
./autogen.sh
93
- ./configure --prefix =${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`
93
+ CONFIG_SITE =${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
94
94
make dist
95
95
SOURCEDIST=`echo bitcoin-*.tar.gz`
96
96
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
@@ -112,9 +112,9 @@ script: |
112
112
mkdir -p ${INSTALLPATH}
113
113
tar --strip-components=1 -xf ../$SOURCEDIST
114
114
115
- ./configure --prefix =${BASEPREFIX}/${i} --bindir=${INSTALLPATH}/bin --includedir=${INSTALLPATH}/include --libdir=${INSTALLPATH}/lib --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS}
115
+ CONFIG_SITE =${BASEPREFIX}/${i}/share/config.site ./configure --prefix=/ --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS}
116
116
make ${MAKEOPTS}
117
- make install-strip
117
+ make install-strip DESTDIR=${INSTALLPATH}
118
118
119
119
make osx_volname
120
120
make deploydir
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ script: |
101
101
102
102
# Create the release tarball using (arbitrarily) the first host
103
103
./autogen.sh
104
- ./configure --prefix =${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`
104
+ CONFIG_SITE =${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
105
105
make dist
106
106
SOURCEDIST=`echo bitcoin-*.tar.gz`
107
107
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
@@ -125,11 +125,11 @@ script: |
125
125
mkdir -p ${INSTALLPATH}
126
126
tar --strip-components=1 -xf ../$SOURCEDIST
127
127
128
- ./configure --prefix =${BASEPREFIX}/${i} --bindir=${INSTALLPATH}/bin --includedir=${INSTALLPATH}/include --libdir=${INSTALLPATH}/lib --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS}
128
+ CONFIG_SITE =${BASEPREFIX}/${i}/share/config.site ./configure --prefix=/ --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS}
129
129
make ${MAKEOPTS}
130
130
make ${MAKEOPTS} -C src check-security
131
131
make deploy
132
- make install-strip
132
+ make install-strip DESTDIR=${INSTALLPATH}
133
133
cp -f bitcoin-*setup*.exe $OUTDIR/
134
134
cd installed
135
135
mv ${DISTNAME}/bin/*.dll ${DISTNAME}/lib/
You can’t perform that action at this time.
0 commit comments