summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity/mosquitto/files/0001-config.mk-allow-prefix-mandir-localedir-from-environ.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-connectivity/mosquitto/files/0001-config.mk-allow-prefix-mandir-localedir-from-environ.patch')
-rw-r--r--meta-networking/recipes-connectivity/mosquitto/files/0001-config.mk-allow-prefix-mandir-localedir-from-environ.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/mosquitto/files/0001-config.mk-allow-prefix-mandir-localedir-from-environ.patch b/meta-networking/recipes-connectivity/mosquitto/files/0001-config.mk-allow-prefix-mandir-localedir-from-environ.patch
new file mode 100644
index 000000000..a5aa277a0
--- /dev/null
+++ b/meta-networking/recipes-connectivity/mosquitto/files/0001-config.mk-allow-prefix-mandir-localedir-from-environ.patch
@@ -0,0 +1,35 @@
1From 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