From a575fc27d4180134f6158342b6c0671963bf2fa9 Mon Sep 17 00:00:00 2001 From: Dennis Heimbigner Date: Wed, 25 Aug 2021 12:37:17 -0600 Subject: [PATCH] Make Issue https://github.com/Unidata/netcdf-c/issues/2077 work when build is repeated. re: https://github.com/Unidata/netcdf-c/pull/2075 The long file name fix fails when the build is manually repeated because the source file has already been renamed. Solution is to test if the dest file exists or not before doing the rename. This is apparently not a problem for automake because it uses AC_CONFIG_LINK, which uses link/copy instead of rename. --- RELEASE_NOTES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6d41fa15d2..2f23faeb25 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -7,6 +7,8 @@ This file contains a high-level description of this package's evolution. Release ## 4.8.2 - TBD +* [Bug Fix] Make PR 2075 long file name be idempotent. See [Github #2066](https://github.com/Unidata/netcdf-c/pull/2066). + ## 4.8.1 - August 18, 2021 * [Bug Fix] Fix multiple bugs in libnczarr. See [Github #2066](https://github.com/Unidata/netcdf-c/pull/2066).