Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] libselinux: remove library host symlink
@ 2018-10-10 21:24 Fabrice Fontaine
  2018-10-10 21:24 ` [Buildroot] [PATCH 2/2] libsepol: " Fabrice Fontaine
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2018-10-10 21:24 UTC (permalink / raw)
  To: buildroot

Since bump to version 2.7 and addition of
0003-revert-ln-relative.patch, the creation of a symlink through
ln -sf libselinux.so.1 $(HOST_DIR)/lib/libselinux.so
is not needed anymore so remove it

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libselinux/libselinux.mk | 1 -
 1 file changed, 1 deletion(-)

diff --git a/package/libselinux/libselinux.mk b/package/libselinux/libselinux.mk
index b3d48f7105..97b4f03062 100644
--- a/package/libselinux/libselinux.mk
+++ b/package/libselinux/libselinux.mk
@@ -102,7 +102,6 @@ endef
 define HOST_LIBSELINUX_INSTALL_CMDS
 	$(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
 		$(HOST_LIBSELINUX_MAKE_OPTS) install
-	ln -sf libselinux.so.1 $(HOST_DIR)/lib/libselinux.so
 	# Install python interface wrapper
 	$(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
 		$(HOST_LIBSELINUX_MAKE_OPTS) install-pywrap
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/2] libsepol: remove library host symlink
  2018-10-10 21:24 [Buildroot] [PATCH 1/2] libselinux: remove library host symlink Fabrice Fontaine
@ 2018-10-10 21:24 ` Fabrice Fontaine
  2018-10-10 21:33   ` Matthew Weber
  2018-10-10 21:34   ` Matthew Weber
  2018-10-10 21:33 ` [Buildroot] [PATCH 1/2] libselinux: " Matthew Weber
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2018-10-10 21:24 UTC (permalink / raw)
  To: buildroot

Since bump to version 2.7 and addition of
0003-revert-ln-relative.patch, the creation of a symlink through
ln -sf libsepol.so.1 $(HOST_DIR)/lib/libsepol.so
is not needed anymore so remove it

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libsepol/libsepol.mk | 1 -
 1 file changed, 1 deletion(-)

diff --git a/package/libsepol/libsepol.mk b/package/libsepol/libsepol.mk
index 5932ca1464..a9a9c652ea 100644
--- a/package/libsepol/libsepol.mk
+++ b/package/libsepol/libsepol.mk
@@ -41,7 +41,6 @@ endef
 
 define HOST_LIBSEPOL_INSTALL_CMDS
 	$(HOST_LIBSEPOL_MAKE_ENV) $(MAKE) -C $(@D) install $(HOST_CONFIGURE_OPTS)
-	ln -sf libsepol.so.1 $(HOST_DIR)/lib/libsepol.so
 endef
 
 $(eval $(generic-package))
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] libselinux: remove library host symlink
  2018-10-10 21:24 [Buildroot] [PATCH 1/2] libselinux: remove library host symlink Fabrice Fontaine
  2018-10-10 21:24 ` [Buildroot] [PATCH 2/2] libsepol: " Fabrice Fontaine
@ 2018-10-10 21:33 ` Matthew Weber
  2018-10-10 21:35 ` Matthew Weber
  2018-10-11  7:34 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: Matthew Weber @ 2018-10-10 21:33 UTC (permalink / raw)
  To: buildroot

Fabrice,

On Wed, Oct 10, 2018 at 4:24 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> Since bump to version 2.7 and addition of
> 0003-revert-ln-relative.patch, the creation of a symlink through
> ln -sf libselinux.so.1 $(HOST_DIR)/lib/libselinux.so
> is not needed anymore so remove it
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Good catch

Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>

> ---
>  package/libselinux/libselinux.mk | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/package/libselinux/libselinux.mk b/package/libselinux/libselinux.mk
> index b3d48f7105..97b4f03062 100644
> --- a/package/libselinux/libselinux.mk
> +++ b/package/libselinux/libselinux.mk
> @@ -102,7 +102,6 @@ endef
>  define HOST_LIBSELINUX_INSTALL_CMDS
>         $(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
>                 $(HOST_LIBSELINUX_MAKE_OPTS) install
> -       ln -sf libselinux.so.1 $(HOST_DIR)/lib/libselinux.so
>         # Install python interface wrapper
>         $(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
>                 $(HOST_LIBSELINUX_MAKE_OPTS) install-pywrap
> --
> 2.17.1
>


-- 
Matthew L Weber / Pr Software Engineer
Airborne Information Systems / RC Linux Secure Platforms
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
www.rockwellcollins.com

Note: Any Export License Required Information and License Restricted
Third Party Intellectual Property (TPIP) content must be encrypted and
sent to matthew.weber at corp.rockwellcollins.com.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/2] libsepol: remove library host symlink
  2018-10-10 21:24 ` [Buildroot] [PATCH 2/2] libsepol: " Fabrice Fontaine
@ 2018-10-10 21:33   ` Matthew Weber
  2018-10-10 21:34   ` Matthew Weber
  1 sibling, 0 replies; 7+ messages in thread
From: Matthew Weber @ 2018-10-10 21:33 UTC (permalink / raw)
  To: buildroot

Fabrice,

On Wed, Oct 10, 2018 at 4:24 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> Since bump to version 2.7 and addition of
> 0003-revert-ln-relative.patch, the creation of a symlink through
> ln -sf libsepol.so.1 $(HOST_DIR)/lib/libsepol.so
> is not needed anymore so remove it
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>

> ---
>  package/libsepol/libsepol.mk | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/package/libsepol/libsepol.mk b/package/libsepol/libsepol.mk
> index 5932ca1464..a9a9c652ea 100644
> --- a/package/libsepol/libsepol.mk
> +++ b/package/libsepol/libsepol.mk
> @@ -41,7 +41,6 @@ endef
>
>  define HOST_LIBSEPOL_INSTALL_CMDS
>         $(HOST_LIBSEPOL_MAKE_ENV) $(MAKE) -C $(@D) install $(HOST_CONFIGURE_OPTS)
> -       ln -sf libsepol.so.1 $(HOST_DIR)/lib/libsepol.so
>  endef
>
>  $(eval $(generic-package))
> --
> 2.17.1
>


-- 
Matthew L Weber / Pr Software Engineer
Airborne Information Systems / RC Linux Secure Platforms
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
www.rockwellcollins.com

Note: Any Export License Required Information and License Restricted
Third Party Intellectual Property (TPIP) content must be encrypted and
sent to matthew.weber at corp.rockwellcollins.com.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/2] libsepol: remove library host symlink
  2018-10-10 21:24 ` [Buildroot] [PATCH 2/2] libsepol: " Fabrice Fontaine
  2018-10-10 21:33   ` Matthew Weber
@ 2018-10-10 21:34   ` Matthew Weber
  1 sibling, 0 replies; 7+ messages in thread
From: Matthew Weber @ 2018-10-10 21:34 UTC (permalink / raw)
  To: buildroot

Fabrice,

On Wed, Oct 10, 2018 at 4:24 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> Since bump to version 2.7 and addition of
> 0003-revert-ln-relative.patch, the creation of a symlink through
> ln -sf libsepol.so.1 $(HOST_DIR)/lib/libsepol.so
> is not needed anymore so remove it
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Sorry long day, shouldn't have sent that signed off.

Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com>

> ---
>  package/libsepol/libsepol.mk | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/package/libsepol/libsepol.mk b/package/libsepol/libsepol.mk
> index 5932ca1464..a9a9c652ea 100644
> --- a/package/libsepol/libsepol.mk
> +++ b/package/libsepol/libsepol.mk
> @@ -41,7 +41,6 @@ endef
>
>  define HOST_LIBSEPOL_INSTALL_CMDS
>         $(HOST_LIBSEPOL_MAKE_ENV) $(MAKE) -C $(@D) install $(HOST_CONFIGURE_OPTS)
> -       ln -sf libsepol.so.1 $(HOST_DIR)/lib/libsepol.so
>  endef
>
>  $(eval $(generic-package))
> --
> 2.17.1
>


-- 
Matthew L Weber / Pr Software Engineer
Airborne Information Systems / RC Linux Secure Platforms
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
www.rockwellcollins.com

Note: Any Export License Required Information and License Restricted
Third Party Intellectual Property (TPIP) content must be encrypted and
sent to matthew.weber at corp.rockwellcollins.com.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] libselinux: remove library host symlink
  2018-10-10 21:24 [Buildroot] [PATCH 1/2] libselinux: remove library host symlink Fabrice Fontaine
  2018-10-10 21:24 ` [Buildroot] [PATCH 2/2] libsepol: " Fabrice Fontaine
  2018-10-10 21:33 ` [Buildroot] [PATCH 1/2] libselinux: " Matthew Weber
@ 2018-10-10 21:35 ` Matthew Weber
  2018-10-11  7:34 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: Matthew Weber @ 2018-10-10 21:35 UTC (permalink / raw)
  To: buildroot

Fabrice,

On Wed, Oct 10, 2018 at 4:24 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> Since bump to version 2.7 and addition of
> 0003-revert-ln-relative.patch, the creation of a symlink through
> ln -sf libselinux.so.1 $(HOST_DIR)/lib/libselinux.so
> is not needed anymore so remove it
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>


Sorry long day, shouldn't have sent that signed off.

Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com>

> ---
>  package/libselinux/libselinux.mk | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/package/libselinux/libselinux.mk b/package/libselinux/libselinux.mk
> index b3d48f7105..97b4f03062 100644
> --- a/package/libselinux/libselinux.mk
> +++ b/package/libselinux/libselinux.mk
> @@ -102,7 +102,6 @@ endef
>  define HOST_LIBSELINUX_INSTALL_CMDS
>         $(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
>                 $(HOST_LIBSELINUX_MAKE_OPTS) install
> -       ln -sf libselinux.so.1 $(HOST_DIR)/lib/libselinux.so
>         # Install python interface wrapper
>         $(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
>                 $(HOST_LIBSELINUX_MAKE_OPTS) install-pywrap
> --
> 2.17.1
>


-- 
Matthew L Weber / Pr Software Engineer
Airborne Information Systems / RC Linux Secure Platforms
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
www.rockwellcollins.com

Note: Any Export License Required Information and License Restricted
Third Party Intellectual Property (TPIP) content must be encrypted and
sent to matthew.weber at corp.rockwellcollins.com.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] libselinux: remove library host symlink
  2018-10-10 21:24 [Buildroot] [PATCH 1/2] libselinux: remove library host symlink Fabrice Fontaine
                   ` (2 preceding siblings ...)
  2018-10-10 21:35 ` Matthew Weber
@ 2018-10-11  7:34 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2018-10-11  7:34 UTC (permalink / raw)
  To: buildroot

Hello,

On Wed, 10 Oct 2018 23:24:16 +0200, Fabrice Fontaine wrote:
> Since bump to version 2.7 and addition of
> 0003-revert-ln-relative.patch, the creation of a symlink through
> ln -sf libselinux.so.1 $(HOST_DIR)/lib/libselinux.so
> is not needed anymore so remove it
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/libselinux/libselinux.mk | 1 -
>  1 file changed, 1 deletion(-)

Both applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-10-11  7:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-10 21:24 [Buildroot] [PATCH 1/2] libselinux: remove library host symlink Fabrice Fontaine
2018-10-10 21:24 ` [Buildroot] [PATCH 2/2] libsepol: " Fabrice Fontaine
2018-10-10 21:33   ` Matthew Weber
2018-10-10 21:34   ` Matthew Weber
2018-10-10 21:33 ` [Buildroot] [PATCH 1/2] libselinux: " Matthew Weber
2018-10-10 21:35 ` Matthew Weber
2018-10-11  7:34 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox