replace ${CGAL_BINARY_DIR}/test by ${CGAL_TEST_DIR}

leftover from autotest_cgal
This commit is contained in:
Jane Tournois 2023-05-25 12:13:53 +02:00
parent 5b82ef33af
commit 1e20243096
1 changed files with 3 additions and 3 deletions

View File

@ -214,13 +214,13 @@ collect_demos_binaries()
echo "COLLECT_DEMOS_BINARIES=$COLLECT_DEMOS_BINARIES" echo "COLLECT_DEMOS_BINARIES=$COLLECT_DEMOS_BINARIES"
if [ -n "$COLLECT_DEMOS_BINARIES" ]; then if [ -n "$COLLECT_DEMOS_BINARIES" ]; then
echo 'COLLECTING DEMOS BINARIES' echo 'COLLECTING DEMOS BINARIES'
echo "cp ${CGAL_DIR}/${SCRIPTS_DIR}developer_scripts/cgal_demo_copy_all_dlls_cygwin.sh ${CGAL_BINARY_DIR}/test" echo "cp ${CGAL_DIR}/${SCRIPTS_DIR}developer_scripts/cgal_demo_copy_all_dlls_cygwin.sh ${CGAL_TEST_DIR}"
cp "${CGAL_DIR}/${SCRIPTS_DIR}developer_scripts/cgal_demo_copy_all_dlls_cygwin.sh" "${CGAL_BINARY_DIR}/test" cp "${CGAL_DIR}/${SCRIPTS_DIR}developer_scripts/cgal_demo_copy_all_dlls_cygwin.sh" "${CGAL_TEST_DIR}"
for demo_dir in *_Demo; do for demo_dir in *_Demo; do
echo "pushd ${demo_dir}" echo "pushd ${demo_dir}"
pushd "${demo_dir}" pushd "${demo_dir}"
bash "${CGAL_BINARY_DIR}/test/"cgal_demo_copy_all_dlls_cygwin.sh "${demo_dir}_with_dlls" "${CONFIG_TYPE}" bash ${CGAL_TEST_DIR}/cgal_demo_copy_all_dlls_cygwin.sh "${demo_dir}_with_dlls" "${CONFIG_TYPE}"
mv "${demo_dir}_with_dlls" .. mv "${demo_dir}_with_dlls" ..
popd popd
done done