Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/Makefile


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/Makefile

    r3242 r3621  
    11VERSION = 1
    2 PATCHLEVEL = 21
     2PATCHLEVEL = 25
    33SUBLEVEL = 1
    4 EXTRAVERSION = -rPBREV
     4EXTRAVERSION =
    55NAME = Unnamed
    66
     
    553553# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
    554554# relocations required by build roots.  This is not defined in the
    555 # makefile but the arguement can be passed to make if needed.
     555# makefile but the argument can be passed to make if needed.
    556556#
    557557
     
    611611      "$(core-y)" \
    612612      "$(libs-y)" \
    613       "$(LDLIBS)"
     613      "$(LDLIBS)" \
     614      && $(srctree)/scripts/generate_BUFSIZ.sh --post include/common_bufsiz.h
    614615
    615616# Generate System.map
     
    845846quiet_cmd_gen_bbconfigopts = GEN     include/bbconfigopts.h
    846847      cmd_gen_bbconfigopts = $(srctree)/scripts/mkconfigs include/bbconfigopts.h include/bbconfigopts_bz2.h
     848quiet_cmd_gen_common_bufsiz = GEN     include/common_bufsiz.h
     849      cmd_gen_common_bufsiz = $(srctree)/scripts/generate_BUFSIZ.sh include/common_bufsiz.h
    847850quiet_cmd_split_autoconf   = SPLIT   include/autoconf.h -> include/config/*
    848851      cmd_split_autoconf   = scripts/basic/split-include include/autoconf.h include/config
     
    851854    $(call cmd,split_autoconf)
    852855    $(call cmd,gen_bbconfigopts)
     856    $(call cmd,gen_common_bufsiz)
    853857    @touch $@
    854858
     
    966970MRPROPER_FILES += .config .config.old include/asm .version .old_version \
    967971          include/NUM_APPLETS.h \
     972          include/common_bufsiz.h \
    968973          include/autoconf.h \
    969974          include/bbconfigopts.h \
     
    11661171
    11671172define all-sources
    1168     ( find $(__srctree) $(RCS_FIND_IGNORE) \
    1169            \( -name include -o -name arch \) -prune -o \
    1170            -name '*.[chS]' -print; \
    1171       for ARCH in $(ALLSOURCE_ARCHS) ; do \
    1172            find $(__srctree)arch/$${ARCH} $(RCS_FIND_IGNORE) \
    1173                 -name '*.[chS]' -print; \
    1174       done ; \
    1175       find $(__srctree)security/selinux/include $(RCS_FIND_IGNORE) \
    1176            -name '*.[chS]' -print; \
    1177       find $(__srctree)include $(RCS_FIND_IGNORE) \
    1178            \( -name config -o -name 'asm-*' \) -prune \
    1179            -o -name '*.[chS]' -print; \
    1180       for ARCH in $(ALLINCLUDE_ARCHS) ; do \
    1181            find $(__srctree)include/asm-$${ARCH} $(RCS_FIND_IGNORE) \
    1182                 -name '*.[chS]' -print; \
    1183       done ; \
    1184       find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \
    1185            -name '*.[chS]' -print )
     1173    ( find -regex '.*\.[ch]$$' )
    11861174endef
    11871175
Note: See TracChangeset for help on using the changeset viewer.