aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2021-07-31 18:04:01 +0200
committerAndreas K. Hüttel <dilfridge@gentoo.org>2021-07-31 18:04:01 +0200
commitc55494ef41ec2002a7326caa90704f03eb0dfd7a (patch)
tree5358baafcefe1c13b3ce73abc7c49ef6ee46597b /scripts
parentDrop more musl special sauce (diff)
downloadreleng-c55494ef41ec2002a7326caa90704f03eb0dfd7a.tar.gz
releng-c55494ef41ec2002a7326caa90704f03eb0dfd7a.tar.bz2
releng-c55494ef41ec2002a7326caa90704f03eb0dfd7a.zip
Remove uclibc files
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cp-uclibc.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/scripts/cp-uclibc.sh b/scripts/cp-uclibc.sh
deleted file mode 100755
index 0bfd24a7..00000000
--- a/scripts/cp-uclibc.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-CATDIR="/release/buildroot/alt-dev/builds/uclibc"
-SERVER="amd64@dipper:~/uclibc"
-LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l)
-COMMAND="rsync"
-for f in $LIST; do
- $COMMAND $(realpath $f) $SERVER
- $COMMAND $(realpath $f).CONTENTS.gz $SERVER
- $COMMAND $(realpath $f).DIGESTS $SERVER
-done
-
-SERVER="x86@dipper:~/uclibc"
-LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*i686*' -type l)
-for f in $LIST; do
- $COMMAND $(realpath $f) $SERVER
- $COMMAND $(realpath $f).CONTENTS.gz $SERVER
- $COMMAND $(realpath $f).DIGESTS $SERVER
-done