aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Saprykin <xelfium@gmail.com>2017-05-21 17:44:23 +0200
committerAlexander Saprykin <xelfium@gmail.com>2017-05-21 17:44:23 +0200
commit28052ca6494032cbb14af6179f056f937571e988 (patch)
treef0e458e08cab036c0ce78aa215cccbd678c4c4b1
parentf772d7f9897e3341026e967706ab1913b97a964e (diff)
downloadvcpkg-28052ca6494032cbb14af6179f056f937571e988.tar.gz
vcpkg-28052ca6494032cbb14af6179f056f937571e988.zip
Use spaces for script indentation
-rw-r--r--ports/plibsys/portfile.cmake18
1 files changed, 9 insertions, 9 deletions
diff --git a/ports/plibsys/portfile.cmake b/ports/plibsys/portfile.cmake
index 1a8402a60..749fa27f5 100644
--- a/ports/plibsys/portfile.cmake
+++ b/ports/plibsys/portfile.cmake
@@ -28,22 +28,22 @@ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/plibsys RENAME copyright)
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
- set(PLIBSYS_FILENAME plibsys)
+ set(PLIBSYS_FILENAME plibsys)
- # Put shared libraries into the proper directory
- file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/bin)
- file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/bin)
+ # Put shared libraries into the proper directory
+ file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/bin)
+ file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/bin)
file(RENAME ${CURRENT_PACKAGES_DIR}/lib/plibsys.dll ${CURRENT_PACKAGES_DIR}/bin/plibsys.dll)
file(RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.dll ${CURRENT_PACKAGES_DIR}/debug/bin/plibsys.dll)
else()
- set(PLIBSYS_FILENAME plibsysstatic)
+ set(PLIBSYS_FILENAME plibsysstatic)
- # For static build remove dynamic libraries
+ # For static build remove dynamic libraries
file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/plibsys.lib)
- file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/plibsys.dll)
- file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.lib)
- file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.dll)
+ file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/plibsys.dll)
+ file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.lib)
+ file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.dll)
endif()
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tmp)