blob: a5aa277a08bd51cf589ebfc5d8bac1cfee94d697 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From 0be38301249d797ec1f59071cc868ceda6d4720a Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <andre.draszik@jci.com>
3Date: Tue, 12 Apr 2016 12:50:32 +0100
4Subject: [PATCH 1/2] config.mk: allow prefix / mandir / localedir from
5 environment
6MIME-Version: 1.0
7Content-Type: text/plain; charset=UTF-8
8Content-Transfer-Encoding: 8bit
9
10We want to control them using OE environment variables.
11
12Upstream-Status: Inappropriate [embedded-specific]
13Signed-off-by: André Draszik <andre.draszik@jci.com>
14---
15 config.mk | 6 +++---
16 1 file changed, 3 insertions(+), 3 deletions(-)
17
18diff --git a/config.mk b/config.mk
19index 71f17e5..81d9702 100644
20--- a/config.mk
21+++ b/config.mk
22@@ -249,7 +249,7 @@ ifeq ($(WITH_DOCS),yes)
23 endif
24
25 INSTALL?=install
26-prefix=/usr/local
27-mandir=${prefix}/share/man
28-localedir=${prefix}/share/locale
29+prefix?=/usr/local
30+mandir?=${prefix}/share/man
31+localedir?=${prefix}/share/locale
32 STRIP?=strip
33--
342.15.1
35