diff options
| author | Balázs Ludmány <ludmany.balazs@cloud.bme.hu> | 2018-07-30 20:33:59 +0200 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-07-30 11:33:59 -0700 |
| commit | 036460a3b77868070fb6ec46705154a2cf8d0207 (patch) | |
| tree | 61b5f36903f792dc9d5e7ab4ee6165b4899c9a7d | |
| parent | 3a94c1cb643e67d6f8aeea398e5f96d1387396d1 (diff) | |
| download | vcpkg-036460a3b77868070fb6ec46705154a2cf8d0207.tar.gz vcpkg-036460a3b77868070fb6ec46705154a2cf8d0207.zip | |
Fix case mismatch in licence file path (#3956)
| -rw-r--r-- | ports/wxwidgets/portfile.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/wxwidgets/portfile.cmake b/ports/wxwidgets/portfile.cmake index c88b4b613..e18b8a6ba 100644 --- a/ports/wxwidgets/portfile.cmake +++ b/ports/wxwidgets/portfile.cmake @@ -47,5 +47,5 @@ endif() # Handle copyright file(COPY ${SOURCE_PATH}/docs/licence.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/wxwidgets) -file(RENAME ${CURRENT_PACKAGES_DIR}/share/wxWidgets/licence.txt ${CURRENT_PACKAGES_DIR}/share/wxwidgets/copyright) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
\ No newline at end of file +file(RENAME ${CURRENT_PACKAGES_DIR}/share/wxwidgets/licence.txt ${CURRENT_PACKAGES_DIR}/share/wxwidgets/copyright) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) |
