We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d0102 commit f7410c9Copy full SHA for f7410c9
dev/jenkins/install-tcl.sh
@@ -8,11 +8,21 @@ renice --priority 19 --pid $$ >& /dev/null
8
pwd
9
ls -l
10
11
-rm -rfv downloads
12
-rm -fv tcl8.6.12-src.tar.gz
+# Clean up old stuff
+(
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
20
wget --no-verbose https://prdownloads.sourceforge.net/tcl/tcl8.6.12-src.tar.gz
21
tar xfz tcl8.6.12-src.tar.gz
22
23
+# Build it!
24
cd tcl8.6.12/unix
25
./configure --prefix=$WORKSPACE/sfw/tcl-8.6.12
26
+make clean
27
make binaries libraries
28
make install-binaries install-libraries install-headers
0 commit comments