comparison scripts/pkg/private/configure_make.m @ 28186:c26838a3afa6 stable

pkg: build with "V=1" for verbose build rules * configure_make.m: Add "V=1" to build environment for verbose build rules.
author Mike Miller <mtmiller@octave.org>
date Mon, 30 Mar 2020 11:41:28 -0700
parents bd51beb6205e
children ad33d23d264f bc6dae9cbe73
comparison
equal deleted inserted replaced
28180:d597dc0a5f74 28186:c26838a3afa6
62 62
63 cenv = {"MKOCTFILE"; mkoctfile_program; 63 cenv = {"MKOCTFILE"; mkoctfile_program;
64 "OCTAVE_CONFIG"; octave_config_program; 64 "OCTAVE_CONFIG"; octave_config_program;
65 "OCTAVE"; octave_binary}; 65 "OCTAVE"; octave_binary};
66 scenv = sprintf ("%s='%s' ", cenv{:}); 66 scenv = sprintf ("%s='%s' ", cenv{:});
67
68 if (verbose)
69 ## Add standard V=1 make argument for verbose build rules
70 scenv = [scenv, "V=1"];
71 endif
67 72
68 ## Configure. 73 ## Configure.
69 if (exist (fullfile (src, "configure"), "file")) 74 if (exist (fullfile (src, "configure"), "file"))
70 flags = ""; 75 flags = "";
71 if (isempty (getenv ("CC"))) 76 if (isempty (getenv ("CC")))