126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
done
if [ ! -e "${INSTDIR}/lib/tclx8.4/pkgIndex.tcl" ]; then
cat << _EOF_ > "${INSTDIR}/lib/tclx8.4/pkgIndex.tcl"
package ifneeded Tclx 8.4 [list load {} Tclx]
_EOF_
fi
# Install files needed by installation
cp -r "${INSTDIR}/lib" "${OUTDIR}" || exit 1
find "${OUTDIR}" -name '*.a' -type f | xargs -n 1 rm -f --
exit 0
) || exit 1
|
<
|
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
done
if [ ! -e "${INSTDIR}/lib/tclx8.4/pkgIndex.tcl" ]; then
cat << _EOF_ > "${INSTDIR}/lib/tclx8.4/pkgIndex.tcl"
package ifneeded Tclx 8.4 [list load {} Tclx]
_EOF_
fi
# Install files needed by installation
cp -r "${INSTDIR}/lib" "${OUTDIR}" || exit 1
find "${OUTDIR}" -name '*.a' -type f | xargs -n 1 rm -f --
exit 0
) || exit 1
|