diff options
| author | Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> | 2021-04-07 03:12:53 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-06 12:12:53 -0700 |
| commit | 88f0e6a94b785f387bc714772d0e8878a2b6059a (patch) | |
| tree | ccf00e7cba30e11c2c89c3bd65374d24f37ab4c4 /ports | |
| parent | 1bb0fe61dfecd1450a1ff44c7fc8d424365366aa (diff) | |
| download | vcpkg-88f0e6a94b785f387bc714772d0e8878a2b6059a.tar.gz vcpkg-88f0e6a94b785f387bc714772d0e8878a2b6059a.zip | |
[vcpkg baseline][gdal] Fix configure error on OSX (#17083)
* [gdal] Fix configure error on OSX
* update version record
* Revert changes
* add touch command
* update version record
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/gdal/portfile.cmake | 7 | ||||
| -rw-r--r-- | ports/gdal/vcpkg.json | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ports/gdal/portfile.cmake b/ports/gdal/portfile.cmake index 2f2cae4bb..5b138f8a1 100644 --- a/ports/gdal/portfile.cmake +++ b/ports/gdal/portfile.cmake @@ -176,6 +176,13 @@ if (VCPKG_TARGET_IS_WINDOWS) endif() else() + # See https://github.com/microsoft/vcpkg/issues/16990 + vcpkg_execute_required_process( + COMMAND touch config.rpath + WORKING_DIRECTORY ${SOURCE_PATH} + LOGNAME touch-${TARGET_TRIPLET} + ) + if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) set(BUILD_DYNAMIC yes) set(BUILD_STATIC no) diff --git a/ports/gdal/vcpkg.json b/ports/gdal/vcpkg.json index f04c03562..b485a2202 100644 --- a/ports/gdal/vcpkg.json +++ b/ports/gdal/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gdal", "version-string": "3.1.3", - "port-version": 3, + "port-version": 4, "description": "The Geographic Data Abstraction Library for reading and writing geospatial raster and vector data.", "homepage": "hhttps://gdal.org/", "dependencies": [ |
