diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-11-21 19:17:13 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-21 19:17:13 -0800 |
| commit | 8e410e9e450f8103a7df19f9f643f52ee7354b4d (patch) | |
| tree | c034642955026da78efa62dc07b4521ef6ec3b2f | |
| parent | 4cb5212dcb06af27c4d5e74098b60ca5b0545bbf (diff) | |
| parent | 2ebc3938ea659f804a99603118208e68c7a61965 (diff) | |
| download | vcpkg-8e410e9e450f8103a7df19f9f643f52ee7354b4d.tar.gz vcpkg-8e410e9e450f8103a7df19f9f643f52ee7354b4d.zip | |
Merge pull request #2240 from jasjuang/alembic
[alembic] fix string replace eats semicolon problem
| -rw-r--r-- | ports/alembic/CONTROL | 2 | ||||
| -rw-r--r-- | ports/alembic/portfile.cmake | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ports/alembic/CONTROL b/ports/alembic/CONTROL index b2246c9c0..e9632f98e 100644 --- a/ports/alembic/CONTROL +++ b/ports/alembic/CONTROL @@ -1,4 +1,4 @@ Source: alembic -Version: 1.7.4 +Version: 1.7.4-1 Build-Depends: ilmbase, hdf5 Description: Alembic is an open framework for storing and sharing scene data that includes a C++ library, a file format, and client plugins and applications. http://alembic.io/ diff --git a/ports/alembic/portfile.cmake b/ports/alembic/portfile.cmake index 3c1242010..03d3e8dc3 100644 --- a/ports/alembic/portfile.cmake +++ b/ports/alembic/portfile.cmake @@ -44,12 +44,12 @@ file(RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/Alembic.dll ${CURRENT_PACKAGES_DIR file(READ ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-debug.cmake DEBUG_CONFIG) string(REPLACE "\${_IMPORT_PREFIX}/debug/lib/Alembic.dll" - "\${_IMPORT_PREFIX}/debug/bin/Alembic.dll" DEBUG_CONFIG ${DEBUG_CONFIG}) + "\${_IMPORT_PREFIX}/debug/bin/Alembic.dll" DEBUG_CONFIG "${DEBUG_CONFIG}") file(WRITE ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-debug.cmake "${DEBUG_CONFIG}") file(READ ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-release.cmake RELEASE_CONFIG) string(REPLACE "\${_IMPORT_PREFIX}/lib/Alembic.dll" - "\${_IMPORT_PREFIX}/bin/Alembic.dll" RELEASE_CONFIG ${RELEASE_CONFIG}) + "\${_IMPORT_PREFIX}/bin/Alembic.dll" RELEASE_CONFIG "${RELEASE_CONFIG}") file(WRITE ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-release.cmake "${RELEASE_CONFIG}") # Put the license file where vcpkg expects it |
