# HG changeset patch # User Mike Becker # Date 1761683089 -3600 # Node ID 053230cb6cfded3cbb25ed6d471549c9ad1ea341 # Parent 2e59f713c1079f20aa6023a0f9a2c6ca9137857a protect against possible spaces in the paths diff -r 2e59f713c107 -r 053230cb6cfd make/install-pc-file.sh --- a/make/install-pc-file.sh Tue Oct 28 21:22:06 2025 +0100 +++ b/make/install-pc-file.sh Tue Oct 28 21:24:49 2025 +0100 @@ -5,11 +5,11 @@ exit 1 fi -version=$1 -libdir=$2 -includedir=$3 +version="$1" +libdir="$2" +includedir="$3" -cat << EOF > $libdir/pkgconfig/ucx.pc +cat << EOF > "$libdir/pkgconfig/ucx.pc" libdir=$libdir includedir=$includedir