tinclude --host and --build to ${CONFIGURE} - mkports - recipes for building multiple softwares with mk(1)
(HTM) git clone git://z3bra.org/mkports
(DIR) Log
(DIR) Files
(DIR) Refs
---
(DIR) commit bd185ff35a76a9282dbff26a1d213bb745ff414a
(DIR) parent f86366438716cad359c1f5be43c389e0cf97ad58
(HTM) Author: z3bra <willyatmailoodotorg>
Date: Tue, 19 Jan 2016 14:13:27 +0100
include --host and --build to ${CONFIGURE}
Diffstat:
M config.mk | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
---
(DIR) diff --git a/config.mk b/config.mk
t@@ -15,10 +15,12 @@ CBUILD = ${TOOLCHAIN_TRIPLET}
CPPFLAGS =
CFLAGS = ${CPPFLAGS}
LDFLAGS = -static
-CONFIGURE = "--prefix=
- --mandir=/man
- --libdir=/lib
- --includedir=/include
- --disable-nls
- --disable-multilib
- --disable-shared"
+CONFIGURE = --prefix= \
+ --build=${CBUILD} \
+ --host=${CHOST} \
+ --mandir=/man \
+ --libdir=/lib \
+ --includedir=/include \
+ --disable-nls \
+ --disable-multilib \
+ --disable-shared