Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/scripts/Makefile.build

    r1765 r2725  
    1414
    1515# The filename Kbuild has precedence over Makefile
     16# bbox: we also try to include Kbuild file in obj tree first
    1617kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
    17 include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile)
     18include $(if $(wildcard $(src)/Kbuild), $(src)/Kbuild, \
     19        $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, \
     20            $(kbuild-dir)/Makefile \
     21        ) \
     22    )
    1823
    1924include scripts/Makefile.lib
     
    252257# If the list of objects to link is empty, just create an empty built-in.o
    253258cmd_link_o_target = $(if $(strip $(obj-y)),\
    254               $(LD) $(ld_flags) -r -o $@ $(filter $(obj-y), $^),\
    255               rm -f $@; $(AR) rcs $@)
     259        $(LD) $(ld_flags) -r -o $@ $(filter $(obj-y), $^),\
     260        rm -f $@; $(AR) rcs $@)
    256261
    257262$(builtin-target): $(obj-y) FORCE
Note: See TracChangeset for help on using the changeset viewer.