changeset 19618:e33427a854ec

* configure_make.m: Single-quote environment variable values.
author John W. Eaton <jwe@octave.org>
date Thu, 15 Jan 2015 22:45:11 -0500
parents 6464cd19e0f4
children 40b0f41a7100
files scripts/pkg/private/configure_make.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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"))