patches/uClibc/0.9.30.2/170-Makefile.in-Make-install_dev-depend-on-install_runti.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 From 323453d85ed29ccba7a81d884479188869cd64b7 Mon Sep 17 00:00:00 2001
     2 From: Henning Heinold <heinold@inf.fu-berlin.de>
     3 Date: Sat, 23 Jan 2010 21:29:42 -0800
     4 Subject: [PATCH 13/15] Makefile.in: Make install_dev depend on install_runtime.
     5 
     6 * Helps in parallel build.
     7 
     8 Signed-off-by: Henning Heinold <heinold@inf.fu-berlin.de>
     9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
    10 Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
    11 ---
    12  Makefile.in |    2 +-
    13  1 files changed, 1 insertions(+), 1 deletions(-)
    14 
    15 diff --git a/Makefile.in b/Makefile.in
    16 index ec4c28e..a889838 100644
    17 --- a/Makefile.in
    18 +++ b/Makefile.in
    19 @@ -370,7 +370,7 @@ ifneq ($(UCLIBC_SUPPORT_AI_ADDRCONFIG),y)
    20  endif
    21  
    22  # Installs development library links.
    23 -install_dev: install_headers all
    24 +install_dev: install_headers install_runtime
    25  	$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
    26  	-$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
    27  ifeq ($(HAVE_SHARED),y)
    28 -- 
    29 1.6.6.1
    30