Differences From
Artifact [a050224c70]:
66 66 ${MAKE:-make} distclean >/dev/null 2>/dev/null
67 67 rm -rf 'starpack.vfs'
68 68
69 69 # Create VFS directory
70 70 mkdir "starpack.vfs"
71 71 mkdir "starpack.vfs/lib"
72 72
73 + ## Install "boot.tcl"
74 + cp 'boot.tcl' 'starpack.vfs/'
75 +
76 + ## Install "tclkit.ico"
77 + cp 'tclkit.ico' 'starpack.vfs/'
78 +
73 79 ## Copy in all built directories
74 80 cp -r "${OTHERPKGSDIR}"/*/out/* 'starpack.vfs/'
75 81
76 82 ## Rename the "vfs" package directory to what "boot.tcl" expects
77 83 mv 'starpack.vfs/lib'/vfs* 'starpack.vfs/lib/vfs'
78 84
79 - ## Install "boot.tcl"
80 - cp 'boot.tcl' 'starpack.vfs/'
81 -
82 - ## Install "tclkit.ico"
83 - cp 'tclkit.ico' 'starpack.vfs/'
84 -
85 85 # Figure out if zlib compiled (if not, the system zlib will be used and we
86 86 # will need to have that present)
87 87 ZLIBDIR="$(cd "${OTHERPKGSDIR}/zlib/inst" 2>/dev/null && pwd)"
88 88 export ZLIBDIR
89 89 if [ -z "${ZLIBDIR}" -o ! -f "${ZLIBDIR}/lib/libz.a" ]; then
90 90 unset ZLIBDIR
91 91 fi