From fc54af99cb04669583a4f9a8f502f68f1f147c78 Mon Sep 17 00:00:00 2001 From: Joe Slater Date: Tue, 14 Jul 2015 10:45:09 -0700 Subject: postgresql: advance from 9.4.2 to 9.4.4 Consolidate patches in one directory and remove two unused patches. Signed-off-by: Joe Slater Signed-off-by: Martin Jansa --- .../postgresql-9.4.2/ecpg-parallel-make-fix.patch | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 meta-oe/recipes-support/postgresql/postgresql-9.4.2/ecpg-parallel-make-fix.patch (limited to 'meta-oe/recipes-support/postgresql/postgresql-9.4.2/ecpg-parallel-make-fix.patch') diff --git a/meta-oe/recipes-support/postgresql/postgresql-9.4.2/ecpg-parallel-make-fix.patch b/meta-oe/recipes-support/postgresql/postgresql-9.4.2/ecpg-parallel-make-fix.patch deleted file mode 100644 index 63615cd517..0000000000 --- a/meta-oe/recipes-support/postgresql/postgresql-9.4.2/ecpg-parallel-make-fix.patch +++ /dev/null @@ -1,31 +0,0 @@ -Upstream-status: backport - -From 602070f9cce790debd8d1469254e7726ab499ae7 Mon Sep 17 00:00:00 2001 -From: Peter Eisentraut -Date: Fri, 29 Mar 2013 21:39:55 -0400 -Subject: [PATCH] ecpg: Parallel make fix - -In some parallel make situations, the install-headers target could be -called before the installation directories are created by installdirs, -causing the installation to fail. Fix that by making install-headers -depend on installdirs. ---- - src/interfaces/ecpg/include/Makefile | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/interfaces/ecpg/include/Makefile b/src/interfaces/ecpg/include/Makefile -index eab833b..e92e56f 100644 ---- a/src/interfaces/ecpg/include/Makefile -+++ b/src/interfaces/ecpg/include/Makefile -@@ -18,7 +18,7 @@ ecpg_headers = ecpgerrno.h ecpglib.h ecpgtype.h sqlca.h sql3types.h ecpg_informi - sqlda.h sqlda-compat.h sqlda-native.h - informix_headers = datetime.h decimal.h sqltypes.h - --install-headers: $(ecpg_headers) $(informix_headers) -+install-headers: $(ecpg_headers) $(informix_headers) installdirs - $(INSTALL_DATA) $(addprefix $(srcdir)/,$(ecpg_headers)) '$(DESTDIR)$(includedir)/' - $(INSTALL_DATA) $(addprefix $(srcdir)/,$(informix_headers)) '$(DESTDIR)$(informix_esql_dir)/' - $(INSTALL_DATA) $(ecpg_config_h) '$(DESTDIR)$(includedir)' --- -1.8.3.4 - -- cgit v1.2.3-54-g00ecf