# HG changeset patch # User John W. Eaton # Date 1421379911 18000 # Node ID e33427a854ec8bb6269231e84a986daca82a8737 # Parent 6464cd19e0f4083cef9ed4980217f7981d2b9b63 * configure_make.m: Single-quote environment variable values. diff -r 6464cd19e0f4 -r e33427a854ec scripts/pkg/private/configure_make.m --- a/scripts/pkg/private/configure_make.m Thu Jan 15 15:36:54 2015 -0500 +++ b/scripts/pkg/private/configure_make.m Thu Jan 15 22:45:11 2015 -0500 @@ -51,7 +51,7 @@ "OCTAVE_CONFIG"; octave_config_program; "OCTAVE"; octave_binary; "INSTALLDIR"; desc.dir}; - scenv = sprintf ("%s=\"%s\" ", cenv{:}); + scenv = sprintf ("%s='%s' ", cenv{:}); ## Configure. if (exist (fullfile (src, "configure"), "file"))