Changeset 742 for branches/samba-3.5.x/source3
- Timestamp:
- Nov 15, 2012, 4:31:30 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/build.cmd
r738 r742 17 17 /* version 0.3.8 from 09.11.2012 Silvan (eliminated the 2nd brand function) */ 18 18 /* version 0.3.9 from 12.11.2012 Silvan (never use ksh, now using sh) */ 19 /* version 0.3.10 from 12.11.2012 Herwig (make libc switching really optional) */ 19 20 20 21 /* load the sysfuncs if not already loaded */ … … 26 27 27 28 /* init the version string (don't forget to change) */ 28 version = "0.3. 9"29 version_date = "1 2.11.2012"29 version = "0.3.10" 30 version_date = "15.11.2012" 30 31 31 32 /* number of make jobs to execute at the same time */ … … 89 90 /* delete the following 7 lines to remove libc switching capability */ 90 91 select 92 when pos("064", cmdline) > 0 then libc = "063" 91 93 when pos("064X", cmdline) > 0 then libc = "064X" 92 94 when pos("063", cmdline) > 0 then libc = "063" 93 otherwise libc = " 064"94 end 95 address cmd "call "libc".cmd"95 otherwise libc = "" 96 end 97 if libc <> "" then address cmd "call "libc".cmd" 96 98 97 99 if pos("MAKE", cmdline) > 0 then do
Note:
See TracChangeset
for help on using the changeset viewer.