aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/imagemagick/imagemagick
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-support/imagemagick/imagemagick')
-rw-r--r--meta-oe/recipes-support/imagemagick/imagemagick/do-not-install-magick-baseconfig.h-repeatedly.patch49
-rw-r--r--meta-oe/recipes-support/imagemagick/imagemagick/remove.dist-lzip.patch17
2 files changed, 0 insertions, 66 deletions
diff --git a/meta-oe/recipes-support/imagemagick/imagemagick/do-not-install-magick-baseconfig.h-repeatedly.patch b/meta-oe/recipes-support/imagemagick/imagemagick/do-not-install-magick-baseconfig.h-repeatedly.patch
deleted file mode 100644
index 114fb5ed40..0000000000
--- a/meta-oe/recipes-support/imagemagick/imagemagick/do-not-install-magick-baseconfig.h-repeatedly.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From bbdd42384d0b5f3ccb11465f63d90097579a1897 Mon Sep 17 00:00:00 2001
-From: Konrad Scherer <konrad.scherer@windriver.com>
-Date: Tue, 10 Jun 2014 15:43:16 +0800
-Subject: [PATCH] imagemagick: do not install magick-baseconfig.h repeatedly
-
-Both targets install-data-local & install-includeHEADERS will install
-header file magick-baseconfig.h to the same location, and they might
-be run in the same time while enabling parallel build:
-
-* target dependencies:
- + install-data-am: ... install-data-local ... install-includeHEADERS
-
-* make install error:
- /usr/bin/install: cannot create regular file \
- `.../usr/include/ImageMagick-6/magick/magick-baseconfig.h': \
- File exists \
- make[3]: *** [install-magickincarchHEADERS] Error 1
-
-* reproduce the error:
- $ /usr/bin/install test /tmp & /usr/bin/install test /tmp
- [1] 4052
- /usr/bin/install: cannot create regular file `/tmp/test': File exists
- [1]+ Exit 1 /usr/bin/install test /tmp
-
-Just disable the one from install-data-local to remove this race issue.
-
-Upstream-Status: pending
-
-Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
----
- magick/Makefile.am | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/magick/Makefile.am b/magick/Makefile.am
-index 2f72461..e45466c 100644
---- a/magick/Makefile.am
-+++ b/magick/Makefile.am
-@@ -468,7 +468,7 @@ MAGICK_EXTRA_DIST = \
- magick/xwdfile.h_vms
-
- # Install magick-baseconfig.h
--MAGICK_INSTALL_DATA_LOCAL_TARGETS = magick-install-data-local
-+MAGICK_INSTALL_DATA_LOCAL_TARGETS =
- magick-install-data-local:
- $(mkinstalldirs) $(DESTDIR)$(magickincarchdir)
- $(INSTALL_HEADER) magick/magick-baseconfig.h $(DESTDIR)$(magickincarchdir)/magick-baseconfig.h
---
-1.8.2.1
-
diff --git a/meta-oe/recipes-support/imagemagick/imagemagick/remove.dist-lzip.patch b/meta-oe/recipes-support/imagemagick/imagemagick/remove.dist-lzip.patch
deleted file mode 100644
index 559aa247d0..0000000000
--- a/meta-oe/recipes-support/imagemagick/imagemagick/remove.dist-lzip.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Our automake-1.11.2 doesn't support it yet, see:
-http://lists.gnu.org/archive/html/automake/2011-12/msg00081.html
-
-Upstream-Status: Inappropriate [fix or upgrade oe-core automake]
-
-diff -uNr ImageMagick-6.7.5-6.orig/configure.ac ImageMagick-6.7.5-6/configure.ac
---- ImageMagick-6.7.5-6.orig/configure.ac 2012-02-12 18:07:28.000000000 +0100
-+++ ImageMagick-6.7.5-6/configure.ac 2012-02-15 12:55:47.668813474 +0100
-@@ -128,7 +128,7 @@
- # Ensure that make can run correctly
- AM_SANITY_CHECK
-
--AM_INIT_AUTOMAKE([1.11 color-tests foreign parallel-tests silent-rules subdir-objects dist-bzip2 dist-lzip dist-xz dist-zip])
-+AM_INIT_AUTOMAKE([1.11 color-tests foreign parallel-tests silent-rules subdir-objects dist-bzip2 dist-xz dist-zip])
-
- # Enable support for silent build rules
- m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])