Skip to content

Commit f7410c9

Browse files
committed
Do make clean
1 parent d4d0102 commit f7410c9

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

dev/jenkins/install-tcl.sh

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,21 @@ renice --priority 19 --pid $$ >& /dev/null
88
pwd
99
ls -l
1010

11-
rm -rfv downloads
12-
rm -fv tcl8.6.12-src.tar.gz
11+
# Clean up old stuff
12+
(
13+
set -x
14+
rm -fv tcl8.6.12/README.md
15+
rm -fr tcl8.6.12
16+
rm -fv tcl8.6.12-src.tar.gz
17+
)
18+
19+
# Download and extract
1320
wget --no-verbose https://prdownloads.sourceforge.net/tcl/tcl8.6.12-src.tar.gz
1421
tar xfz tcl8.6.12-src.tar.gz
22+
23+
# Build it!
1524
cd tcl8.6.12/unix
1625
./configure --prefix=$WORKSPACE/sfw/tcl-8.6.12
26+
make clean
1727
make binaries libraries
1828
make install-binaries install-libraries install-headers

0 commit comments

Comments
 (0)