summaryrefslogtreecommitdiffstats
path: root/patches/optee-client-2.4.0/0001-Makefile-preserve-links-to-libraries-during-make-cop.patch
diff options
context:
space:
mode:
authorRouven Czerwinski <r.czerwinski@pengutronix.de>2019-02-13 09:42:57 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-02-13 12:04:58 +0100
commit69668882bd8ed042fd97d050be18226cf174e7f2 (patch)
tree3b6c3b88943f8ace3b257155a6494d77d9ce51b1 /patches/optee-client-2.4.0/0001-Makefile-preserve-links-to-libraries-during-make-cop.patch
parent97727e2fdab395969a97f3ec3853380ec5253f99 (diff)
downloadptxdist-69668882bd8ed042fd97d050be18226cf174e7f2.tar.gz
ptxdist-69668882bd8ed042fd97d050be18226cf174e7f2.tar.xz
optee-client: bump to 3.4.0
Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches/optee-client-2.4.0/0001-Makefile-preserve-links-to-libraries-during-make-cop.patch')
-rw-r--r--patches/optee-client-2.4.0/0001-Makefile-preserve-links-to-libraries-during-make-cop.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/patches/optee-client-2.4.0/0001-Makefile-preserve-links-to-libraries-during-make-cop.patch b/patches/optee-client-2.4.0/0001-Makefile-preserve-links-to-libraries-during-make-cop.patch
deleted file mode 100644
index e7616e29e..000000000
--- a/patches/optee-client-2.4.0/0001-Makefile-preserve-links-to-libraries-during-make-cop.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From: Marc Kleine-Budde <mkl@pengutronix.de>
-Date: Mon, 12 Jun 2017 17:13:30 +0200
-Subject: [PATCH] Makefile: preserve links to libraries during make copy_export
-
-During "make copy_export" and "make install" the shared library is
-copied into the LIBDIR. However "cp" is used, thus the links to the
-shared library are not preserved. This patch fixes the problem by using
-"cp -a" instead.
-
-Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
----
- Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile b/Makefile
-index c7462479e5fe..4c2d45851543 100644
---- a/Makefile
-+++ b/Makefile
-@@ -128,7 +128,7 @@ distclean: clean
-
- copy_export: build
- mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(INCLUDEDIR)
-- cp ${O}/libteec/libteec.so* $(DESTDIR)$(LIBDIR)
-+ cp -a ${O}/libteec/libteec.so* $(DESTDIR)$(LIBDIR)
- if [ "$(BUILD-LIBSQLFS)" ]; then cp ${O}/libsqlfs/libsqlfs.so* $(DESTDIR)$(LIBDIR); fi
- cp ${O}/tee-supplicant/tee-supplicant $(DESTDIR)$(BINDIR)
- cp public/*.h $(DESTDIR)$(INCLUDEDIR)