Changeset 487 for branches/samba-3.3.x/source
- Timestamp:
- Aug 20, 2010, 11:14:09 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/build.cmd
r460 r487 1 1 /* Samba build script for eCS (OS/2) */ 2 3 /* version history */ 4 /* version 0.1.0 from 09.04.2010 Herwig (first edition) */ 5 /* version 0.2.0 from 09.06.2010 Herwig (a lot enhancements) */ 6 /* version 0.3.0 from 20.08.2010 Silvan (added version.ecs check and more) */ 7 8 /* load the sysfuncs if not already loaded */ 9 if (RxFuncQuery('SysLoadFuncs') = 1) then 10 do 11 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; 12 call SysLoadFuncs; 13 end 14 15 /* init the version string (don't forget to change) */ 16 version = "0.3.0" 17 version_date = "20.08.2010" 2 18 3 19 '@echo off' 4 20 parse upper arg cmdline 5 21 22 say "Samba for eCS (OS/2) build script v" || version || " from " || version_date 23 6 24 /* No parameter or HELP -> display usage */ 7 25 if pos("HELP", cmdline) > 0 | cmdline = "" then do 8 say "Samba for eCS (OS/2) build script"9 26 say 10 27 say "Valid commands are:" … … 143 160 VerFile = "VERSION.ECS" 144 161 162 /* is the file available */ 163 ok = stream(VerFile, 'c', 'QUERY EXISTS') 164 if ok = "" then do 165 say "Please create a " || VerFile || " based on VERSION.EC_" 166 exit 0 167 end 168 145 169 /* Samba Version file */ 146 170 Version = "VERSION"
Note:
See TracChangeset
for help on using the changeset viewer.