Changes in boot/Makefile [cc92076:c8fbbe7] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    rcc92076 rc8fbbe7  
    117117                cp "$(USPACE_PATH)/$(DRVS_PATH)/$$file_dir/$$file_name/$$file_name.fw" "$(DIST_PATH)/$(DRVS_PATH)/$$file_name/" ; \
    118118        done
    119         if [ -d $(DIST_OVERLAY_PATH) ]; then \
     119        if ls $(DIST_OVERLAY_PATH)/* >/dev/null 2>/dev/null; then \
    120120                cp -r -L $(DIST_OVERLAY_PATH)/* "$(DIST_PATH)"; \
    121121        fi
     
    128128        rm -f $(POST_OUTPUT) $(BOOT_OUTPUT) arch/*/include/common.h
    129129        find generic/src/ arch/*/src/ genarch/src/ -name '*.o' -follow -exec rm \{\} \;
    130         find generic/src/ arch/*/src/ genarch/src/ -name '*.d' -follow -exec rm \{\} \;
     130        find . -name '*.d' -follow -exec rm \{\} \;
    131131
    132132clean_dist:
Note: See TracChangeset for help on using the changeset viewer.