diff options
| author | Siarhei Siniak <serega.belarus@gmail.com> | 2019-02-23 02:24:59 +0300 |
|---|---|---|
| committer | Codiferous <44823842+Codiferous@users.noreply.github.com> | 2019-02-22 15:24:59 -0800 |
| commit | f10c9d7e21a208d2c60e2ac0b7ee473bb1179549 (patch) | |
| tree | 299bcaa63d69beb7c576e4f4acae22013a4d2800 | |
| parent | 473e803451a45ddb4d497d4fb6f863ba1ac2b1b2 (diff) | |
| download | vcpkg-f10c9d7e21a208d2c60e2ac0b7ee473bb1179549.tar.gz vcpkg-f10c9d7e21a208d2c60e2ac0b7ee473bb1179549.zip | |
[fix] Regression of copyright install at netcdf-c (#5414)
* [~] Refactor
* [~] Refactor
| -rw-r--r-- | ports/netcdf-c/portfile.cmake | 5 | ||||
| -rw-r--r-- | ports/netcdf-cxx4/portfile.cmake | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/ports/netcdf-c/portfile.cmake b/ports/netcdf-c/portfile.cmake index f2630711e..4abe0f9dc 100644 --- a/ports/netcdf-c/portfile.cmake +++ b/ports/netcdf-c/portfile.cmake @@ -52,3 +52,8 @@ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) # Handle copyright file(COPY ${SOURCE_PATH}/COPYRIGHT DESTINATION ${CURRENT_PACKAGES_DIR}/share/netcdf-c) +file( + RENAME + ${CURRENT_PACKAGES_DIR}/share/netcdf-c/COPYRIGHT + ${CURRENT_PACKAGES_DIR}/share/netcdf-c/copyright +) diff --git a/ports/netcdf-cxx4/portfile.cmake b/ports/netcdf-cxx4/portfile.cmake index 92ae59675..22e4e1653 100644 --- a/ports/netcdf-cxx4/portfile.cmake +++ b/ports/netcdf-cxx4/portfile.cmake @@ -42,3 +42,8 @@ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) # Handle copyright file(COPY ${SOURCE_PATH}/COPYRIGHT DESTINATION ${CURRENT_PACKAGES_DIR}/share/netcdf-cxx4) +file( + RENAME + ${CURRENT_PACKAGES_DIR}/share/netcdf-cxx4/COPYRIGHT + ${CURRENT_PACKAGES_DIR}/share/netcdf-cxx4/copyright +) |
