From e6e214d1e66a44d17ff7e36482f8d75eadfd1336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Sat, 29 Jul 2023 20:21:52 +0200 Subject: [PATCH] Add comment to VCPKG_INSTALL_ROOT path extraction. --- pkg-scripts/make-deb-server | 1 + pkg-scripts/make-rpm-server | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg-scripts/make-deb-server b/pkg-scripts/make-deb-server index ef763c7dd5..c914ce6a4d 100755 --- a/pkg-scripts/make-deb-server +++ b/pkg-scripts/make-deb-server @@ -10,6 +10,7 @@ fi if [ ! "$OVERTE_USE_SYSTEM_QT" ]; then QT5_LIBS=`realpath ~/overte-files/qt/qt5-install/lib` fi +# The regex below extracts the path from the VCPKG_INSTALL_ROOT variable. Said variable gets populated during the CMake step. VCPKG_INSTALL_ROOT=`grep VCPKG_INSTALL_ROOT $OVERTE/build/vcpkg.cmake | perl -ne 'm/set\(VCPKG_INSTALL_ROOT\s+\"(.*?)\"/; print $1'` sudo apt-get install chrpath binutils dh-make diff --git a/pkg-scripts/make-rpm-server b/pkg-scripts/make-rpm-server index c86bb6e3f1..146788329f 100755 --- a/pkg-scripts/make-rpm-server +++ b/pkg-scripts/make-rpm-server @@ -10,6 +10,7 @@ fi if [ "$OVERTE_USE_SYSTEM_QT" = "" ]; then QT5_LIBS=`realpath ~/overte-files/qt/qt5-install/lib` fi +# The regex below extracts the path from the VCPKG_INSTALL_ROOT variable. Said variable gets populated during the CMake step. VCPKG_INSTALL_ROOT=`grep VCPKG_INSTALL_ROOT $OVERTE/build/vcpkg.cmake | perl -ne 'm/set\(VCPKG_INSTALL_ROOT\s+\"(.*?)\"/; print $1'` VERSION=${RPMVERSION}