Skip to content

Commit 8d3d767

Browse files
committed
pkgrebuild: update toolchain maintenance
1 parent fdc5578 commit 8d3d767

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkgrebuild

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
LIST="/tmp/$(basename $0)-list"
2525
touch $LIST
2626

27-
TOOLCHAIN="linux-api-headers glibc-pass1 binutils-pass1 gcc binutils glibc"
27+
TOOLCHAIN="linux-api-headers glibc-pass1 binutils-pass1 gcc-pass1 glibc binutils gcc"
2828

2929
#scratch sync || exit 1
3030

@@ -33,7 +33,7 @@ for tc in $TOOLCHAIN; do
3333
pkgname="$(echo $tc | sed 's/-pass1//')"
3434
scratch build -f $pkgname || exit 1
3535
echo $tc >> $LIST
36-
scratch install -r $pkgname --no-backup || exit 1
36+
scratch install -r $pkgname || exit 1
3737
fi
3838
done
3939

@@ -44,7 +44,7 @@ for pkg in $(scratch deplist base | awk '{print $2}'); do
4444
if [ ! $(grep -x $pkg $LIST) ]; then
4545
scratch build -f $pkg || exit 1
4646
echo $pkg >> $LIST
47-
scratch install -r $pkg --no-backup || exit 1
47+
scratch install -r $pkg || exit 1
4848
fi
4949
done
5050

0 commit comments

Comments
 (0)