# HG changeset patch # User Markus Mützel # Date 1658158208 -7200 # Node ID 94998332d787d6111a404459a9a690887e7a9ee2 # Parent b726aff748e3810a29c71dc72d01898ebe23cace# Parent 07e52e612ea28e372647611791411c37875517a2 maint: Merge stable to default. diff -r b726aff748e3 -r 94998332d787 scripts/pkg/private/expand_rel_paths.m --- a/scripts/pkg/private/expand_rel_paths.m Fri Jul 15 08:59:07 2022 +0200 +++ b/scripts/pkg/private/expand_rel_paths.m Mon Jul 18 17:30:08 2022 +0200 @@ -31,7 +31,7 @@ function pkg_list = expand_rel_paths (pkg_list) ## Prepend location of OCTAVE_HOME to install directories - loc = OCTAVE_HOME (); + loc = regexptranslate ("escape", OCTAVE_HOME ()); for i = 1:numel (pkg_list) ## Be sure to only prepend OCTAVE_HOME to pertinent package paths pkg_list{i}.dir = regexprep (pkg_list{i}.dir, "^__OH__", loc);