Index: server/buildpkgs/Tclx/build.sh ================================================================== --- server/buildpkgs/Tclx/build.sh +++ server/buildpkgs/Tclx/build.sh @@ -86,16 +86,15 @@ fi bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --libdir="${PLATDIR}" ${MAKE:-make} || exit 1 -) || exit 1 -( mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null ${MAKE:-make} install-lib-binaries PKG_DIR='' || exit 1 - ../create_teapot "${PLATDIR}/teapot.txt" "Tclx" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "Extended Tcl" ) || exit 1 + +../create_teapot "${PLATDIR}/teapot.txt" "Tclx" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "Extended Tcl" exit 0 Index: server/buildpkgs/build_all.sh ================================================================== --- server/buildpkgs/build_all.sh +++ server/buildpkgs/build_all.sh @@ -45,10 +45,14 @@ export dir if [ ! -f "${dir}/build.sh" ]; then continue fi + + if [ "${CLEANONLY}" = "0" ]; then + echo "Building ${dir}" + fi failed=0 ( cd "${dir}" || exit 1 @@ -64,14 +68,10 @@ mkdir -p "out/${PLATFORM}" >/dev/null 2>/dev/null ./build.sh > "out/${PLATFORM}/build.log" 2>&1 || exit 1 ) || failed=1 - if [ "${CLEANONLY}" = "0" ]; then - echo "Building ${dir}" - fi - if [ "${failed}" = "1" ]; then cp "${dir}/out/${PLATFORM}/build.log" "${dir}/failed-${PLATFORM}-`hostname`.log" rm -rf "${dir}/out" faileddirs="${faileddirs} ${dir}"