summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/guile/files
diff options
context:
space:
mode:
authorMarko Lindqvist <cazfi74@gmail.com>2012-12-14 13:43:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-19 17:54:53 +0000
commit606561953a5fafa735ffe34311dc490f6ee9c554 (patch)
treeb19f965c8192d01b3794d3967130869167a9e5f9 /meta/recipes-devtools/guile/files
parent00dd34b92f58295979957a38e827eafb41df8372 (diff)
downloadpoky-606561953a5fafa735ffe34311dc490f6ee9c554.tar.gz
guile: update to upstream version 2.0.7
change-install-data-hook-to-install-exec-hook-in-gui.patch is now part of upstream. (From OE-Core rev: 3d03eb7430849d7bd709e70a300efeb4a88cdb20) Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/guile/files')
-rw-r--r--meta/recipes-devtools/guile/files/change-install-data-hook-to-install-exec-hook-in-gui.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-devtools/guile/files/change-install-data-hook-to-install-exec-hook-in-gui.patch b/meta/recipes-devtools/guile/files/change-install-data-hook-to-install-exec-hook-in-gui.patch
deleted file mode 100644
index df61e5d104..0000000000
--- a/meta/recipes-devtools/guile/files/change-install-data-hook-to-install-exec-hook-in-gui.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1From 687e5a6598f89b97c89afb94d6ac3ec024dc08e2 Mon Sep 17 00:00:00 2001
2From: "Song.Li" <Song.Li@windriver.com>
3Date: Thu, 26 Jul 2012 14:19:46 +0800
4Subject: [PATCH] guile:meta/Makefile change install-data-hook to install-exec-hook
5
6In guile meta/Makefile, what install-data-hook do
7must be run after install-binSCRIPTS.so it's a exec hook, not a data hook.
8If keep these exec-hook in data-hook,when we run make with multi-jobbing ,
9install-data-hook and install-binSCRIPTS will be separately
10processed in different thread, no any dependence.
11that will cause error sometimes.
12
13[YOCTO #2796]
14
15Upstream-Status:Submitted
16Upstream Bugid :12015 email:12015@debbugs.gnu.org
17guile bug maillist: bug-guile@gnu.org
18
19Signed-off-by: Song.Li <Song.Li@windriver.com>
20---
21 meta/Makefile.am | 2 +-
22 1 file changed, 1 insertion(+), 1 deletion(-)
23
24diff --git a/meta/Makefile.am b/meta/Makefile.am
25index a05730d..bd20784 100644
26--- a/meta/Makefile.am
27+++ b/meta/Makefile.am
28@@ -28,7 +28,7 @@ EXTRA_DIST= \
29 guild.in guile-config.in
30
31 # What we now call `guild' used to be known as `guile-tools'.
32-install-data-hook:
33+install-exec-hook:
34 guild="`echo $(ECHO_N) guild \
35 | $(SED) -e '$(program_transform_name)'`$(EXEEXT)" ; \
36 guile_tools="`echo $(ECHO_N) guile-tools \