Check-in [256ae2708d]
Overview
Comment:Updated to not emit duplicate requirements
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 256ae2708d75912c56c1fca36f8c6ab8e0f12c7d
User & Date: rkeene on 2010-10-09 15:32:25
Other Links: manifest | tags
Context
2010-10-09
15:48
Updated teapot_index to remove duplicate requirements from built index page check-in: 0844204408 user: rkeene tags: trunk
15:32
Updated to not emit duplicate requirements check-in: 256ae2708d user: rkeene tags: trunk
11:34
Updated TLS build to allow the user to specify their own SSLDIR environment variable check-in: b968cf8855 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/create_teapot from [7fbee19e66] to [8df8afa355].

58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
		continue
	fi

	if echo "${req}" | grep ' ' >/dev/null; then
		req="{${req}}"
	fi

	echo "Meta require            ${req}" >> "${TMPFILE}"
done

if [ "${TEXTFILE}" = "1" ]; then
	cat "${TMPFILE}" > "${OUTFILE}"
else
	(
		head -1 "${OUTFILE}"
		echo ''







|
|







58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
		continue
	fi

	if echo "${req}" | grep ' ' >/dev/null; then
		req="{${req}}"
	fi

	echo "Meta require            ${req}"
done | sort -u >> "${TMPFILE}"

if [ "${TEXTFILE}" = "1" ]; then
	cat "${TMPFILE}" > "${OUTFILE}"
else
	(
		head -1 "${OUTFILE}"
		echo ''