diff options
author | Kelley Cook <kcook@gcc.gnu.org> | 2004-05-17 23:26:49 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2004-05-17 23:26:49 +0000 |
commit | 2f70118592b876b093e8c6baf72d57ae8e244a14 (patch) | |
tree | 8cf633f6c94afe61181bf21ca3c759ea1fb43130 /maintainer-scripts/gcc_release | |
parent | e876acbd25c26828c235f0723fc5b4554f4ea9d6 (diff) | |
download | gcc-2f70118592b876b093e8c6baf72d57ae8e244a14.zip gcc-2f70118592b876b093e8c6baf72d57ae8e244a14.tar.gz gcc-2f70118592b876b093e8c6baf72d57ae8e244a14.tar.bz2 |
gcc_release (build_sources): Change CRCs from brik to md5sum.
[maintainer-scripts/]
2004-05-17 Kelley Cook <kcook@gcc.gnu.org>
* gcc_release (build_sources): Change CRCs from brik to md5sum.
[htdocs/]
2004-05-17 Kelley Cook <kcook@gcc.gnu.org>
* snapshots.html: Update docs for checking with md5sum.
From-SVN: r81958
Diffstat (limited to 'maintainer-scripts/gcc_release')
-rwxr-xr-x | maintainer-scripts/gcc_release | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index eda1adc..49aac5a 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -249,14 +249,8 @@ EOF # Move message catalogs to source directory. mv ../objdir/gcc/po/*.gmo gcc/po/ - # Create a `.brik' file to use for checking the validity of the - # release. - changedir "${SOURCE_DIRECTORY}" - BRIK_FILE=`mktemp /tmp/gcc_release.XXXXXXX` - ((find . -type f | sort > $BRIK_FILE) && \ - brik -Gb -f ${BRIK_FILE} > .brik && \ - rm ${BRIK_FILE}) || \ - error "Could not compute brik checksum" + # Create a "MD5SUMS" file to use for checking the validity of the release. + find . -type f |sed -e 's:^\./::' -e '/MD5SUMS/d' |sort |xargs md5sum >MD5SUMS } # Buid a single tarfile. The first argument is the name of the name |