Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1 | From 0be38301249d797ec1f59071cc868ceda6d4720a Mon Sep 17 00:00:00 2001 |
| 2 | From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <andre.draszik@jci.com> |
| 3 | Date: Tue, 12 Apr 2016 12:50:32 +0100 |
| 4 | Subject: [PATCH 1/2] config.mk: allow prefix / mandir / localedir from |
| 5 | environment |
| 6 | MIME-Version: 1.0 |
| 7 | Content-Type: text/plain; charset=UTF-8 |
| 8 | Content-Transfer-Encoding: 8bit |
| 9 | |
| 10 | We want to control them using OE environment variables. |
| 11 | |
| 12 | Upstream-Status: Inappropriate [embedded-specific] |
| 13 | Signed-off-by: André Draszik <andre.draszik@jci.com> |
| 14 | --- |
| 15 | config.mk | 6 +++--- |
| 16 | 1 file changed, 3 insertions(+), 3 deletions(-) |
| 17 | |
| 18 | diff --git a/config.mk b/config.mk |
| 19 | index 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 | -- |
| 34 | 2.15.1 |
| 35 | |