Changeset 12


Ignore:
Timestamp:
Jul 11, 2006, 9:11:24 PM (19 years ago)
Author:
RBRi
Message:

+ copy Changes.txt
% fix dont copy .svn dir content

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/i18n/makeall.cmd

    r6 r12  
    2121nv_rc = SysMkDir(nv_build_dir)
    2222
     23/* copy changes.txt */
     24copy Changes.txt nv_build_dir
     25
     26
    2327/* compile the ipf file */
    2428ipfc NewView.ipf nv_build_dir||'\NewView.hlp'
     
    2630call SysFileTree nv_i18n_dir||'\', subdirs, 'DO'
    2731do i=1 to subdirs.0
    28     if 0 = lastpos('images', subdirs.i) then
     32    if  0 = lastpos('images', subdirs.i) then
    2933    do
    30         nv_locale = substr(subdirs.i, lastpos('\',subdirs.i) + 1)
     34        if  0 = lastpos('.svn', subdirs.i) then
     35        do
     36            nv_locale = substr(subdirs.i, lastpos('\',subdirs.i) + 1)
    3137
    32         /* compile the ipf file inside the dir */
    33         call SysFileTree subdirs.i || '\NewView_' || nv_locale || '.ipf', ipffiles, 'FO'
    34         do j=1 to ipffiles.0
    35             ipfc ipffiles.j nv_build_dir || '\NewView_' || nv_locale || '.hlp'
     38            /* compile the ipf file inside the dir */
     39            call SysFileTree subdirs.i || '\NewView_' || nv_locale || '.ipf', ipffiles, 'FO'
     40            do j=1 to ipffiles.0
     41                ipfc ipffiles.j nv_build_dir || '\NewView_' || nv_locale || '.hlp'
     42            end
     43
     44            /* copy the lang file */
     45            copy subdirs.i || '\newview_' || nv_locale || '.lng' nv_build_dir
    3646        end
    37 
    38         /* copy the lang file */
    39         copy subdirs.i || '\newview_' || nv_locale || '.lng' nv_build_dir
    4047    end
    4148end
Note: See TracChangeset for help on using the changeset viewer.