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


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.custom

    r2725 r3621  
    44
    55busybox.links: $(srctree)/applets/busybox.mkll $(objtree)/include/autoconf.h include/applets.h
    6     $(Q)-$(SHELL) $^ >$@
     6    $(Q)-$(SHELL) $^ > $@
     7
     8busybox.cfg.suid: $(srctree)/applets/busybox.mksuid $(objtree)/include/autoconf.h include/applets.h
     9    $(Q)-SUID="yes" $(SHELL) $^ > $@
     10busybox.cfg.nosuid: $(srctree)/applets/busybox.mksuid $(objtree)/include/autoconf.h include/applets.h
     11    $(Q)-SUID="DROP" $(SHELL) $^ > $@
    712
    813.PHONY: install
     
    2328INSTALL_OPTS:= --scriptwrapper
    2429endif
     30endif
     31ifeq ($(CONFIG_FEATURE_INDIVIDUAL),y)
     32INSTALL_OPTS:= --binaries
     33LIBBUSYBOX_SONAME:= 0_lib/libbusybox.so.$(BB_VER)
    2534endif
    2635install: $(srctree)/applets/install.sh busybox busybox.links
     
    5160.PHONY: check
    5261.PHONY: test
     62ifeq ($(CONFIG_UNIT_TEST),y)
     63UNIT_CMD = ./busybox unit
     64endif
    5365check test: busybox busybox.links
     66    $(UNIT_CMD)
    5467    test -d $(objtree)/testsuite || cp -pPR $(srctree)/testsuite $(objtree)
    5568    bindir=$(objtree) srcdir=$(srctree)/testsuite \
     
    6982        -print \
    7083        -exec rm -r -f {} \; ; \
     84    find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \
     85        -name .gitignore \
     86        -print \
     87        -exec rm -f {} \; ; \
    7188    find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \
    7289        -name .\#* \
Note: See TracChangeset for help on using the changeset viewer.