- Remove all directories whose name begins with "bench" from the public

release (CGAL-3.5 is affected as well).
- Fix the removal of .scm-urls files
This commit is contained in:
Laurent Rineau 2009-09-03 23:47:45 +00:00
parent 9598042b56
commit 97d5929802
1 changed files with 2 additions and 2 deletions

View File

@ -265,9 +265,9 @@ if [ -n "$DO_PUBLIC" ]; then
mv ${release_name} $public_release_name mv ${release_name} $public_release_name
cd ${public_release_name} cd ${public_release_name}
rm -rf test package_info developer_scripts doc_tex winutils include/CGAL/Test include/CGAL/Testsuite/ rm -rf bench* Bench* test package_info developer_scripts doc_tex winutils include/CGAL/Test include/CGAL/Testsuite/
rm -f examples/*/cgal_test* demo/*/cgal_test* rm -f examples/*/cgal_test* demo/*/cgal_test*
find . -name .scm-urls -exec rm '{}+' find . -name .scm-urls -exec rm '{}' '+'
sed -i -e "s/define CGAL_VERSION .*/define CGAL_VERSION $public_release_version/" -e "s/define CGAL_VERSION_NR .*/define CGAL_VERSION_NR $public_release_number/" include/CGAL/version.h sed -i -e "s/define CGAL_VERSION .*/define CGAL_VERSION $public_release_version/" -e "s/define CGAL_VERSION_NR .*/define CGAL_VERSION_NR $public_release_number/" include/CGAL/version.h
echo -n $public_release_version > VERSION 2>&1 echo -n $public_release_version > VERSION 2>&1
cd .. cd ..