Changeset 144 for trunk/kBuild


Ignore:
Timestamp:
Sep 7, 2004, 3:57:21 PM (21 years ago)
Author:
bird
Message:

fixed trouble with dll which doesn't export something.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/VCC70.kmk

    r130 r144  
    243243                $(subst /,\\,$(libs))
    244244ifeq ($(filter %.exp .def,$(othersrc)),)
    245         $(CP) $(outbase).exp $(outbase).lib $(PATH_LIB)/
     245        if test -f $(outbase).exp; then $(CP) $(outbase).exp $(PATH_LIB)/; fi
     246        if test -f $(outbase).lib; then $(CP) $(outbase).lib $(PATH_LIB)/; fi
    246247endif
    247248ifneq ($(custom_post),)
Note: See TracChangeset for help on using the changeset viewer.