Diff

Differences From Artifact [ce2eeffdfa]:

To Artifact [4b3c985883]:


28
29
30
31
32
33
34
35

36


37
38
39

40



41

42
43
44
	wget -O "${SRC}" "${SRCURL}" || exit 1
fi

(
	cd 'build' || exit 1

	gzip -dc "../${SRC}" | tar -xf -


	cd "${BUILDDIR}/unix" || exit 1


	./configure --disable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA}

	"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" || exit 1





	"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" install

) || exit 1

exit 0








>

>
>

|
|
>

>
>
>

>



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
	wget -O "${SRC}" "${SRCURL}" || exit 1
fi

(
	cd 'build' || exit 1

	gzip -dc "../${SRC}" | tar -xf -


	cd "${BUILDDIR}/unix" || exit 1

	# Build static libraries for linking against Tclkit
	./configure --disable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA}
	"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" || exit 1
	"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" install
	"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" distclean

	# Build shared object version (only used for non-Kit loading)
	./configure --enable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA}
	"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" || exit 1
	"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" install

) || exit 1

exit 0