diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-05 21:50:33 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-15 22:05:41 +0200 |
commit | 5d18727bdcccc05a013bc35a8c413df4e1c2797e (patch) | |
tree | 6b3a4149201e0e2bdfe431877af2f42833b6f7f3 | |
parent | f4db607f1d77150b543c3d1136db83236a336eda (diff) | |
download | buildroot-5d18727bdcccc05a013bc35a8c413df4e1c2797e.tar.gz buildroot-5d18727bdcccc05a013bc35a8c413df4e1c2797e.zip |
libsemanage: remove Blackfin patch
And renumber the remaining patch.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/libsemanage/0001-libsemanage-build-follow-standard-semantics-for-DESTD.patch (renamed from package/libsemanage/0002-libsemanage-build-follow-standard-semantics-for-DESTD.patch) | 0 | ||||
-rw-r--r-- | package/libsemanage/0001-workaround-blackfin-issue.patch | 25 |
2 files changed, 0 insertions, 25 deletions
diff --git a/package/libsemanage/0002-libsemanage-build-follow-standard-semantics-for-DESTD.patch b/package/libsemanage/0001-libsemanage-build-follow-standard-semantics-for-DESTD.patch index 47ac6bded5..47ac6bded5 100644 --- a/package/libsemanage/0002-libsemanage-build-follow-standard-semantics-for-DESTD.patch +++ b/package/libsemanage/0001-libsemanage-build-follow-standard-semantics-for-DESTD.patch diff --git a/package/libsemanage/0001-workaround-blackfin-issue.patch b/package/libsemanage/0001-workaround-blackfin-issue.patch deleted file mode 100644 index 7ce960665c..0000000000 --- a/package/libsemanage/0001-workaround-blackfin-issue.patch +++ /dev/null @@ -1,25 +0,0 @@ -Do not make symbols hidden on Blackfin - -The libselinux logic to hide internal symbols from the DSO doesn't -work properly on Blackfin due to the USER_LABEL_PREFIX not being -handled properly. A real fix is not that simple, so this patch simply -disables the internal symbol hiding mechanism. This means that those -symbols are visible in the final DSO, which is not a problem for -proper execution, it just isn't as clean. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Signed-off-by: Adam Duskett <Aduskett@gmail.com> - -Index: b/src/dso.h -=================================================================== ---- a/src/dso.h -+++ b/src/dso.h -@@ -1,7 +1,7 @@ - #ifndef _SEPOL_DSO_H - #define _SEPOL_DSO_H 1 - --#ifdef SHARED -+#if defined(SHARED) && !defined(__bfin__) - # define hidden __attribute__ ((visibility ("hidden"))) - # define hidden_proto(fct) __hidden_proto (fct, fct##_internal) - # define __hidden_proto(fct, internal) \ |