Changeset 246


Ignore:
Timestamp:
Apr 3, 2005, 1:02:28 AM (20 years ago)
Author:
bird
Message:

Remove copy target before copying. Should fix the weird .so crashes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/footer.kmk

    r243 r246  
    817817$(eval pubexe := $(PATH_BIN)/$(notdir $(exe)))
    818818$(pubexe) : $(exe) $(dir $(pubexe)).dir_created
     819        $(RM) -f $(pubexe)
    819820        $(CP) $(exe) $(pubexe)
    820821
     
    888889$(eval publib := $(PATH_LIB)/$(notdir $(lib)))
    889890$(publib) : $(lib) $(dir $(publib)).dir_created
     891        $(RM) -f $(publib)
    890892        $(CP) $(lib) $(publib)
    891893
     
    10591061$(eval pubdll := $(PATH_BIN)/$(notdir $(dll)))
    10601062$(pubdll) : $(dll) $(dir $(pubdll)).dir_created
     1063        $(RM) -f $(pubdll)
    10611064        $(CP) $(dll) $(pubdll)
    10621065
     
    12301233$(eval pubexe := $(PATH_BIN)/$(notdir $(exe)))
    12311234$(pubexe) : $(exe) $(dir $(pubexe)).dir_created
     1235        $(RM) -f $(pubexe)
    12321236        $(CP) $(exe) $(pubexe)
    12331237
     
    14001404$(eval pubsys := $(PATH_BIN)/$(notdir $(sys)))
    14011405$(pubsys): $(sys) $(dir $(pubsys)).dir_created
     1406        $(RM) -f $(pubsys)
    14021407        $(CP) $(sys) $(pubsys)
    14031408
Note: See TracChangeset for help on using the changeset viewer.