dd4bcebd7c
So far, to overcome the buggy way the flite tarball is made, we had to override the extract commands in a rather ugly way. The newly introduced <PKG>_STRIP_COMPONENTS, along with <PKG>_SUBDIR and a little edit to the patches, allow to remove the custom FLITE_EXTRACT_CMDS, slightly simplifying the flite.mk code. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Samuel Martin <s.martin49@gmail.com> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
960 B
Diff
31 lines
960 B
Diff
From 658f3243238efe951f6242fa384e990d77078afc Mon Sep 17 00:00:00 2001
|
|
From: Samuel Martin <s.martin49@gmail.com>
|
|
Date: Fri, 27 Dec 2013 17:42:39 +0100
|
|
Subject: [PATCH] now honor DESTDIR env. var.
|
|
|
|
Flite used a handwritten a Makefile which doesn't honor DESTDIR environment
|
|
variable, though it uses autoconf.
|
|
|
|
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
|
|
---
|
|
config/config.in | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/config/config.in b/config/config.in
|
|
index 914d2bf..43f1a56 100644
|
|
--- a/flite-1.4-release/config/config.in
|
|
+++ b/flite-1.4-release/config/config.in
|
|
@@ -49,6 +49,6 @@ include $(TOP)/config/$(langvox).lv
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
EXEEXT = @EXEEXT@
|
|
-INSTALLBINDIR = @bindir@
|
|
-INSTALLLIBDIR = @libdir@
|
|
-INSTALLINCDIR = @includedir@/flite
|
|
+INSTALLBINDIR = $(DESTDIR)@bindir@
|
|
+INSTALLLIBDIR = $(DESTDIR)@libdir@
|
|
+INSTALLINCDIR = $(DESTDIR)@includedir@/flite
|
|
--
|
|
1.8.5.2
|
|
|