Check-in [fc9393d109]
Overview
Comment:Minor semantic fix to Metakit build, no functional change
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: fc9393d109d5faef01230ff858fc4d4894c4cf9a
User & Date: rkeene on 2013-08-10 10:53:47
Other Links: manifest | tags
Context
2013-08-10
17:49
Updated Android.mk file check-in: 005d3b6b5d user: rkeene tags: trunk
10:53
Minor semantic fix to Metakit build, no functional change check-in: fc9393d109 user: rkeene tags: trunk
2013-08-09
22:44
Updated to allow extra packages to include libraries to add check-in: bb510c2f21 user: rkeene tags: trunk
Changes

Modified mk4tcl/build.sh from [fac2b52a94] to [a7ae1d5383].

114
115
116
117
118
119
120

121

122

123
124
125
126
127
128
129
114
115
116
117
118
119
120
121

122
123
124
125
126
127
128
129
130
131







+
-
+

+







			isshared="0"
		fi

		# If build a static Mk4tcl for KitDLL, ensure that we use PIC
		# so that it can be linked into the shared object
		if [ "${isshared}" = "0" -a "${KITTARGET}" = "kitdll" ]; then
			CXXFLAGS="${SAVE_CXXFLAGS} -fPIC"
		else
			export CXXFLAGS
			CXXFLAGS="${SAVE_CXXFLAGS}"
		fi
		export CXXFLAGS

		(
			echo "Running: ./configure $tryopt --prefix=\"${INSTDIR}\" --exec-prefix=\"${INSTDIR}\" --libdir=\"${INSTDIR}/lib\" --with-tcl=\"${TCLCONFIGDIR}/../generic\" ${CONFIGUREEXTRA}"
			./configure $tryopt --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA}

			echo "Running: ${MAKE:-make} tcllibdir=\"${INSTDIR}/lib\" AR=\"${AR:-ar}\" RANLIB=\"${RANLIB:-ranlib}\""
			${MAKE:-make} tcllibdir="${INSTDIR}/lib" AR="${AR:-ar}" RANLIB="${RANLIB:-ranlib}" || exit 1