patches/uClibc/0.9.30.2/170-Makefile.in-Make-install_dev-depend-on-install_runti.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Dec 12 21:41:16 2011 +0200 (2011-12-12)
branch1.13
changeset 2845 0dc9d4931246
permissions -rw-r--r--
scripts: unset CONFIG_SITE

Some distributions (eg. openSUSE 12.1) systematically export
the CONFIG_SITE environment variable to point to a custom
script setting misc paths for ./configure.

This can, and does, break when cross-compiling for architectures
that are not supported by this script.

The simple workaround is to unset this variable.
NB: buildroot has a similar fix:
http://git.buildroot.org/buildroot/commit/?id=12c9f7dd6dee9c6029b4f9a12d6aac1516911ab4

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