Changeset 4699


Ignore:
Timestamp:
Sep 18, 2021, 9:09:40 AM (4 years ago)
Author:
Andreas Schnellbacher
Message:
  • RecompileNew: Avoid adding to ask to add current file to macroadd.lst, if it's a known file of netlabs\macros. Then it's included by another file and should not be compiled separately.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/recompile.e

    r4685 r4699  
    17091709      endif
    17101710
     1711      -- Check if file exists as 'netlabs\macros\'CurName
     1712      -- Then it's included by another file, because all netlabs files are
     1713      -- used, except obsolete.e.
     1714      NepmdRootDir = Get_Env( 'NEPMD_ROOTDIR')
     1715      if Exist( NepmdRootDir'\netlabs\macros\'lowcase( CurName)) &
     1716         lowcase( CurName) <> 'obsolete.e' then
     1717         leave
     1718      endif
     1719
    17111720      -- Check if current file is found in EPMPATH
    17121721      fFoundInEpmPath = 0
Note: See TracChangeset for help on using the changeset viewer.