changeset 28200:bc6dae9cbe73 stable

pkg: insert missing space in configure command * configure_make.m: Insert missing space between environment variables and configure command.
author Mike Miller <mtmiller@octave.org>
date Thu, 09 Apr 2020 15:35:57 -0700
parents 52b2680e091c
children b8384ed4d500 6c88000fed48
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	Wed Mar 25 16:46:30 2020 -0400
+++ b/scripts/pkg/private/configure_make.m	Thu Apr 09 15:35:57 2020 -0700
@@ -85,7 +85,7 @@
       if (isempty (getenv ("RANLIB")))
         flags = [flags ' RANLIB="' mkoctfile("-p", "RANLIB") '"'];
       endif
-      cmd = ["cd '" src "'; " scenv "./configure " flags];
+      cmd = ["cd '" src "'; " scenv " ./configure " flags];
       [status, output] = shell (cmd, verbose);
       if (status != 0)
         rmdir (desc.dir, "s");