fixes post-CGAL-6.0

[skip ci]
This commit is contained in:
Laurent Rineau 2024-10-01 16:31:06 +02:00
parent 1f3d820a42
commit 2ca0e52a85
3 changed files with 8 additions and 1 deletions

View File

@ -75,7 +75,7 @@ Data structures specialized to classify clusters.
\cgalPkgDependsOn{\ref PkgSolverInterface, \ref PkgSpatialSearchingD}
\cgalPkgBib{cgal:lm-clscm-12}
\cgalPkgLicense{\ref licensesGPL "GPL"}
\cgalPkgDemo{Operations on Polyhedra,polyhedron_3.zip}
\cgalPkgDemo{CGAL Lab,CGALlab.zip}
\cgalPkgShortInfoEnd
\cgalPkgDescriptionEnd

View File

@ -76,6 +76,7 @@ pushd Triangulation_on_sphere_2_Demo_with_dlls; zip -r ../triangulation_on_spher
# CGAL-6.0
pushd Lab_Demo_with_dlls; zip -r ../CGALlab.zip *; popd
pushd Arrangement_on_surface_2_earth_Demo_with_dlls; zip -r ../arrangements_2_earth.zip *; popd
# check
echo CHECK now. The following lines should be empty.

View File

@ -21,6 +21,12 @@
set -e # Exit the script on first error, for safety
err_report() {
echo "Error (code $?) on line $(caller)"
}
trap 'err_report $LINENO' ERR
PREVIOUS_MAJOR_RELEASE=$1
CURRENT_RELEASE=$2