* [Buildroot] [PATCH] scons: fix library installation directory
@ 2012-10-09 22:25 Gustavo Zacarias
2012-10-11 20:28 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Gustavo Zacarias @ 2012-10-09 22:25 UTC (permalink / raw)
To: buildroot
On gentoo systems SCons setup.py tries to install into
$(HOST_DIR)/usr/lib64 but SCons looks up for its stuff in
$(HOST_DIR)/usr/lib instead hence breaking.
Make it install into $(HOST_DIR)/usr/lib by force to avoid the issue, it
shouldn't matter on other distributions.
Version bumping doesn't fix it.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/scons/scons.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/scons/scons.mk b/package/scons/scons.mk
index 2aed62c..878dcba 100644
--- a/package/scons/scons.mk
+++ b/package/scons/scons.mk
@@ -7,7 +7,7 @@ define HOST_SCONS_BUILD_CMDS
endef
define HOST_SCONS_INSTALL_CMDS
- (cd $(@D); python setup.py install --prefix=$(HOST_DIR)/usr)
+ (cd $(@D); python setup.py install --prefix=$(HOST_DIR)/usr --install-lib=$(HOST_DIR)/usr/lib/scons-$(SCONS_VERSION))
endef
$(eval $(host-generic-package))
--
1.7.8.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] scons: fix library installation directory
2012-10-09 22:25 [Buildroot] [PATCH] scons: fix library installation directory Gustavo Zacarias
@ 2012-10-11 20:28 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2012-10-11 20:28 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> On gentoo systems SCons setup.py tries to install into
Gustavo> $(HOST_DIR)/usr/lib64 but SCons looks up for its stuff in
Gustavo> $(HOST_DIR)/usr/lib instead hence breaking.
Gustavo> Make it install into $(HOST_DIR)/usr/lib by force to avoid the issue, it
Gustavo> shouldn't matter on other distributions.
Gustavo> Version bumping doesn't fix it.
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Gustavo> ---
Gustavo> package/scons/scons.mk | 2 +-
Gustavo> 1 files changed, 1 insertions(+), 1 deletions(-)
Gustavo> diff --git a/package/scons/scons.mk b/package/scons/scons.mk
Gustavo> index 2aed62c..878dcba 100644
Gustavo> --- a/package/scons/scons.mk
Gustavo> +++ b/package/scons/scons.mk
Gustavo> @@ -7,7 +7,7 @@ define HOST_SCONS_BUILD_CMDS
Gustavo> endef
Gustavo> define HOST_SCONS_INSTALL_CMDS
Gustavo> - (cd $(@D); python setup.py install --prefix=$(HOST_DIR)/usr)
Gustavo> + (cd $(@D); python setup.py install --prefix=$(HOST_DIR)/usr --install-lib=$(HOST_DIR)/usr/lib/scons-$(SCONS_VERSION))
Committed with the line wrapped after ~80 chars, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-10-11 20:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-09 22:25 [Buildroot] [PATCH] scons: fix library installation directory Gustavo Zacarias
2012-10-11 20:28 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox