Skip to content

Commit 27a9912

Browse files
author
Junio C Hamano
committed
update binary building
1 parent ba8e668 commit 27a9912

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

DoKernelOrg

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ make clean >/dev/null 2>&1 &&
2121
case "$1" in
2222
'')
2323
echo "* Building all"
24-
branches='next master maint'
24+
branches='next master maint pu'
2525
nstalled=install
2626
for branch in $branches
2727
do
@@ -44,6 +44,7 @@ case "$1" in
4444
maint | master)
4545
case `hostname` in
4646
hera.kernel.org)
47+
narch='x86_64 i386'
4748
arch=x86_64 ;;
4849
old-hera.kernel.org)
4950
arch=i386 ;;
@@ -66,11 +67,17 @@ maint | master)
6667
make $J git >>./:all.log 2>&1 &&
6768
V=`./git --version | sed -e 's/git version //'` &&
6869
ln git-$V.tar.gz git-htmldocs-$V.tar.gz git-manpages-$V.tar.gz $G/. &&
69-
ln $HOME/rpms/RPMS/$arch/git*-$V-* $G/RPMS/$arch/. &&
70+
for a in $narch
71+
do
72+
ln $HOME/rpms/RPMS/$a/git*-$V-* $G/RPMS/$a/.
73+
done &&
7074
ln $HOME/rpms/SRPMS/git-$V-* $G/RPMS/SRPMS/. &&
7175
{
7276
# I do not know how it exits, and I do not care much.
73-
/usr/local/bin/yummy $G/RPMS/$arch
77+
for a in $narch
78+
do
79+
/usr/local/bin/yummy $G/RPMS/$a
80+
done
7481
/usr/local/bin/yummy $G/RPMS/SRPMS
7582
:
7683
} >>./:all.log 2>&1 &&

0 commit comments

Comments
 (0)