Changeset 793
- Timestamp:
- Aug 16, 2013, 11:32:39 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/build.cmd
r787 r793 24 24 25 25 /* load the sysfuncs if not already loaded */ 26 if (RxFuncQuery('SysLoadFuncs') = 1) then 27 do 28 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; 29 call SysLoadFuncs; 26 if (RxFuncQuery('SysLoadFuncs') = 1) then do 27 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs' 28 call SysLoadFuncs 30 29 end 31 30 32 31 /* init the version string (don't forget to change) */ 33 version = "0.3.13"32 version = "0.3.13" 34 33 version_date = "15.08.2013" 35 34 … … 114 113 if pos("BRAND", cmdline) > 0 then do 115 114 Brand = "YES" 116 build_parms = build_parms||' brand'115 build_parms = build_parms||' BRAND' 117 116 end 118 117 if pos("CONF", cmdline) > 0 then do 119 118 Conf = "YES" 120 build_parms = build_parms||' conf'119 build_parms = build_parms||' CONF' 121 120 end 122 121 … … 207 206 208 207 /* Recreate build_anomalies.log */ 209 ok = SysFileDelete("build_anomalies.log") 208 anomalylog = "build_anomalies.log" 209 ok = SysFileDelete(anomalylog) 210 210 do until lines(logFile) = 0 211 211 buildlogline = linein(logFile) … … 217 217 when left(buildlogline,6) = "Using " then iterate 218 218 when left(buildlogline,6) = " " then iterate 219 otherwise call lineout "build_anomalies.log", buildlogline219 otherwise call lineout anomalylog, buildlogline 220 220 end 221 221 end … … 226 226 reqsec = reqtime//60 227 227 say "All done, took "format(reqmin,,0)' min 'format(reqsec,,0)" sec." 228 ok = stream(logfile,'c','open') 229 ok = stream(logfile,'c','seek <0') 228 230 call lineout logFile, "All done, took "format(reqmin,,0)' min 'format(reqsec,,0)" sec." 231 ok = stream(logfile,'c','close') 229 232 exit 0 230 233 … … 259 262 if left(eCSVer.I,14) = "MAINTAINED_BY=" then do 260 263 parse var eCSver.I . '='maintainedBy 261 maintainedBy = ' Maintained by: "' || strip(maintainedBy,,'"') || '"'264 maintainedBy = '"Maintained by: ' || strip(maintainedBy,,'"') || '"' 262 265 end 263 266 end … … 297 300 ok = SysFileDelete(NewVersion) 298 301 verstring = suffix'-'Major'.'minor'.'release'.'revision'-'vendor'-'date('S') 299 say 'Samba branded as: "'verstring'"' 302 say 'Samba branded as: ' 303 say '"'verstring'"' 300 304 say maintainedBy 301 305 say
Note:
See TracChangeset
for help on using the changeset viewer.