Changeset 3758


Ignore:
Timestamp:
Dec 23, 2019, 7:59:06 PM (5 years ago)
Author:
Andreas Schnellbacher
Message:
  • RecompileNew: Fixed recognition of deleted myepm .e file. Now, for the case that the netlabs .e file is included instead, it is checked if the previously saved datetime is different from the netlabs .e file datetime.
File:
1 edited

Legend:

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

    r3743 r3758  
    951951               NetlabsEFileTime = NepmdQueryPathInfo( NetlabsEFile, 'MTIME')
    952952               NetlabsEFileTimeRc = rc
     953
     954               -- This was added for the case that an included myepm .e file
     955               -- was deleted. Then the netlabs .e file is included instead
     956               -- and the .ex file should be recompiled. Without this block,
     957               -- the deletion won't be recognized.
     958               if fEFileInNetlabsTree & SavedEFileTime <> NetlabsEFileTime then
     959;dprintf( 'EFile = 'EFile', fEFileInNetlabsTree = 'fEFileInNetlabsTree', SavedEFileTime = 'SavedEFileTime', NetlabsEFileTime = 'NetlabsEFileTime)
     960                  fCompExFile = 1
     961               endif
    953962
    954963               -- Compare time of EFile with LastCheckTime and CurExFileTime.
Note: See TracChangeset for help on using the changeset viewer.