Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH RESEND] Fix autotools instalation with symbols
@ 2010-03-07 15:33 Paulius Zaleckas
  2010-03-07 16:39 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Paulius Zaleckas @ 2010-03-07 15:33 UTC (permalink / raw)
  To: buildroot

When installing without symbols install-strip is used,
with symbols - install-exec.
Since install-exec installs only executables, we should use
simple install, to install other needed files also
(like files in /usr/shared) as install-strip does.

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Acked-by: Lionel Landwerlin <llandwerlin@gmail.com>
---

 package/Makefile.autotools.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in
index 7114bba..a8dd051 100644
--- a/package/Makefile.autotools.in
+++ b/package/Makefile.autotools.in
@@ -60,7 +60,7 @@ $(2)_LIBTOOL_PATCH		?= YES
 $(2)_USE_CONFIG_CACHE           ?= $(if $(BR2_CONFIG_CACHE),YES,NO)
 $(2)_INSTALL_STAGING_OPT	?= DESTDIR=$$(STAGING_DIR) install
 ifeq ($(BR2_ENABLE_DEBUG),y)
-$(2)_INSTALL_TARGET_OPT		?= DESTDIR=$$(TARGET_DIR)  install-exec
+$(2)_INSTALL_TARGET_OPT		?= DESTDIR=$$(TARGET_DIR)  install
 else
 $(2)_INSTALL_TARGET_OPT		?= DESTDIR=$$(TARGET_DIR)  install-strip
 endif

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

* [Buildroot] [PATCH RESEND] Fix autotools instalation with symbols
  2010-03-07 15:33 Paulius Zaleckas
@ 2010-03-07 16:39 ` Thomas Petazzoni
  2010-03-18 18:22   ` Paulius Zaleckas
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2010-03-07 16:39 UTC (permalink / raw)
  To: buildroot

On Sun, 07 Mar 2010 17:33:59 +0200
Paulius Zaleckas <paulius.zaleckas@gmail.com> wrote:

> When installing without symbols install-strip is used,
> with symbols - install-exec.
> Since install-exec installs only executables, we should use
> simple install, to install other needed files also
> (like files in /usr/shared) as install-strip does.
> 
> Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
> Acked-by: Lionel Landwerlin <llandwerlin@gmail.com>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH RESEND] Fix autotools instalation with symbols
  2010-03-07 16:39 ` Thomas Petazzoni
@ 2010-03-18 18:22   ` Paulius Zaleckas
  0 siblings, 0 replies; 4+ messages in thread
From: Paulius Zaleckas @ 2010-03-18 18:22 UTC (permalink / raw)
  To: buildroot

On 03/07/2010 06:39 PM, Thomas Petazzoni wrote:
> On Sun, 07 Mar 2010 17:33:59 +0200
> Paulius Zaleckas<paulius.zaleckas@gmail.com>  wrote:
>
>> When installing without symbols install-strip is used,
>> with symbols - install-exec.
>> Since install-exec installs only executables, we should use
>> simple install, to install other needed files also
>> (like files in /usr/shared) as install-strip does.
>>
>> Signed-off-by: Paulius Zaleckas<paulius.zaleckas@gmail.com>
>> Acked-by: Lionel Landwerlin<llandwerlin@gmail.com>
>
> Acked-by: Thomas Petazzoni<thomas.petazzoni@free-electrons.com>

Peter,

Please take this patch as now for example X11 drivers are not
installed for the target. There are also various other problems
without this patch.

Paulius

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

* [Buildroot] [PATCH RESEND] Fix autotools instalation with symbols
@ 2010-03-25 18:48 Paulius Zaleckas
  0 siblings, 0 replies; 4+ messages in thread
From: Paulius Zaleckas @ 2010-03-25 18:48 UTC (permalink / raw)
  To: buildroot

When installing without symbols install-strip is used,
with symbols - install-exec.
Since install-exec installs only executables, we should use
simple install, to install other needed files also
(like files in /usr/shared) as install-strip does.

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Acked-by: Lionel Landwerlin <llandwerlin@gmail.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---

 package/Makefile.autotools.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in
index 7114bba..a8dd051 100644
--- a/package/Makefile.autotools.in
+++ b/package/Makefile.autotools.in
@@ -60,7 +60,7 @@ $(2)_LIBTOOL_PATCH		?= YES
 $(2)_USE_CONFIG_CACHE           ?= $(if $(BR2_CONFIG_CACHE),YES,NO)
 $(2)_INSTALL_STAGING_OPT	?= DESTDIR=$$(STAGING_DIR) install
 ifeq ($(BR2_ENABLE_DEBUG),y)
-$(2)_INSTALL_TARGET_OPT		?= DESTDIR=$$(TARGET_DIR)  install-exec
+$(2)_INSTALL_TARGET_OPT		?= DESTDIR=$$(TARGET_DIR)  install
 else
 $(2)_INSTALL_TARGET_OPT		?= DESTDIR=$$(TARGET_DIR)  install-strip
 endif

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

end of thread, other threads:[~2010-03-25 18:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-25 18:48 [Buildroot] [PATCH RESEND] Fix autotools instalation with symbols Paulius Zaleckas
  -- strict thread matches above, loose matches on Subject: below --
2010-03-07 15:33 Paulius Zaleckas
2010-03-07 16:39 ` Thomas Petazzoni
2010-03-18 18:22   ` Paulius Zaleckas

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