
Add a script to generate the full patch and do cleanups before making a
release.



 utils/prerelease |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+)

diff -puN /dev/null utils/prerelease
--- /dev/null	1969-12-31 21:00:00.000000000 -0300
+++ cur-root/utils/prerelease	2004-01-17 22:42:30.000000000 -0300
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+if [ $# -ne 1 ]; then
+	echo "Usage: prerelease RELNUM"
+	exit
+fi
+
+echo "Creating the full patch"
+patchdesc $(cat ps/series) > ../old-$1.patch
+echo >> ../old-$1.patch
+echo >> ../old-$1.patch
+combine-series ../old-$1.patch-t1
+cat ../old-$1.patch-t1 >> ../old-$1.patch
+rm ../old-$1.patch-t1
+
+echo "Cleaning up"
+make clean
+
+

_
