[banshee] [build] don't pass -j# when doing make install



commit 740610275fc9f99ae14e5db1456a9d36ee656c0a
Author: Aaron Bockover <abockover novell com>
Date:   Tue Dec 29 11:03:39 2009 -0500

    [build] don't pass -j# when doing make install
    
    A number of packages seem to have a race condition around
    mkdir -p and mkinstalldirs it seems when doing a parallel
    install.
    
    For packages that this is worked around already, revert the
    overriding install section since the default install is
    no longer parallel.

 build/bundle/build.py           |    2 +-
 build/bundle/packages/libogg.py |    4 ----
 build/bundle/packages/speex.py  |    3 ---
 3 files changed, 1 insertions(+), 8 deletions(-)
---
diff --git a/build/bundle/build.py b/build/bundle/build.py
index e7b8a44..fcc23e7 100755
--- a/build/bundle/build.py
+++ b/build/bundle/build.py
@@ -82,7 +82,7 @@ def load_package_defaults (profile, package):
 	# tool macros
 	package['__configure'] = './configure --prefix=%{_prefix}'
 	package['__make'] = 'make -j%s' % profile['cpu_count']
-	package['__makeinstall'] = '%{__make} install'
+	package['__makeinstall'] = 'make install'
 
 	# install default sections if they are missing
 	package.setdefault ('prep', ['tar xf @{sources:0}', 'cd %{name}-%{version}'])
diff --git a/build/bundle/packages/libogg.py b/build/bundle/packages/libogg.py
index ccddb27..c433102 100644
--- a/build/bundle/packages/libogg.py
+++ b/build/bundle/packages/libogg.py
@@ -3,9 +3,5 @@ package = {
 	'version': '1.1.4',
 	'sources': [
 		'http://downloads.xiph.org/releases/ogg/%{name}-%{version}.tar.gz'
-	],
-	'install': [
-		'make install'
 	]
-
 }
diff --git a/build/bundle/packages/speex.py b/build/bundle/packages/speex.py
index e1389a4..b0fb308 100644
--- a/build/bundle/packages/speex.py
+++ b/build/bundle/packages/speex.py
@@ -3,8 +3,5 @@ package = {
 	'version': '1.2rc1',
 	'sources': [
 		'http://downloads.xiph.org/releases/%{name}/%{name}-%{version}.tar.gz'
-	],
-	'install': [
-		'make install'
 	]
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]