Check-in [dfe475c779]
Overview
Comment:Minor clean-up
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: dfe475c7796977a030e0b069579d83509fd31f16
User & Date: rkeene on 2011-07-20 00:43:18
Other Links: manifest | tags
Context
2011-07-22
18:35
Added UDP package check-in: bc4f6068e4 user: rkeene tags: trunk
2011-07-20
00:43
Minor clean-up check-in: dfe475c779 user: rkeene tags: trunk
00:37
Fixed minor bug, take 2 check-in: 26aa2157b5 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/build_all.sh from [467d09ee9f] to [f4e58c31b0].

229
230
231
232
233
234
235
236

237
238
239
240
241
242
243
244
245
246
247
248
229
230
231
232
233
234
235

236
237
238
239
240
241
242
243
244
245
246
247
248







-
+












	pkginstdir="${instdir}/${dir}"

	(
		cd "${dir}/out" 2>/dev/null >/dev/null || exit 1

		mkdir "${pkginstdir}"

		cp -r * "${pkginstdir}/"
		cp -r * "${pkginstdir}/" >/dev/null 2>/dev/null
	)
done

(
	cd __tmp__ || exit 1

	tar -cf - *
) | bzip2 -9c > "${OUTFILEBASE}.tar.bz2"

rm -rf __tmp__

exit 0