From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paulius Zaleckas Date: Sun, 07 Mar 2010 17:33:59 +0200 Subject: [Buildroot] [PATCH RESEND] Fix autotools instalation with symbols Message-ID: <20100307153359.10213.62431.stgit@localhost.localdomain> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net 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 Acked-by: Lionel Landwerlin --- 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