Differences From Artifact [e2207437c3]:
- Executable file
tcl/build.sh
— part of check-in
[31d4e5f3a4]
at
2010-09-26 04:39:07
on branch trunk
— Installed all packages that come with Tcl
Removed demos from Tk (user: rkeene, size: 1527) [annotate] [blame] [check-ins using]
To Artifact [56c78273b3]:
- Executable file
tcl/build.sh
— part of check-in
[023de4a116]
at
2010-09-26 04:39:15
on branch trunk
— Updated to check for 'buildsrc' directory before untarring. If found it is used. (Untested)
Updated to download sources to a temporary file and only rename on success (user: rkeene, size: 1651) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
34 35 36 37 38 39 40 |
cvs -z3 -d:pserver:anonymous@tcl.cvs.sourceforge.net:/cvsroot/tcl co -r "${CVSTAG}" -P tcl
mv tcl "tcl${TCLVERS}"
tar -cf - "tcl${TCLVERS}" | gzip -c > "../${SRC}"
)
else
| > | > > | > > > | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
cvs -z3 -d:pserver:anonymous@tcl.cvs.sourceforge.net:/cvsroot/tcl co -r "${CVSTAG}" -P tcl
mv tcl "tcl${TCLVERS}"
tar -cf - "tcl${TCLVERS}" | gzip -c > "../${SRC}"
)
else
rm -f "${SRC}.tmp"
wget -O "${SRC}.tmp" "${SRCURL}" || exit 1
mv "${SRC}.tmp" "${SRC}"
fi
fi
(
cd 'build' || exit 1
if [ ! -d '../buildsrc' ]; then
gzip -dc "../${SRC}" | tar -xf -
else
cp -rp ../buildsrc/* './'
fi
cd "${BUILDDIR}" || exit 1
for dir in unix win macosx; do
# Remove previous directory's "tclConfig.sh" if found
rm -f 'tclConfig.sh'
cd "${BUILDDIR}/${dir}" || exit 1
|
| ︙ | ︙ |