[banshee] [build] fix a LDFLAGS typo, name the linux profile



commit 1c9de54feb9d3a43d0310ab9ed611a1c00e784a4
Author: Aaron Bockover <abockover novell com>
Date:   Thu Jan 7 18:50:56 2010 -0500

    [build] fix a LDFLAGS typo, name the linux profile

 build/bundle/bockbuild/unixprofile.py |    2 +-
 build/bundle/profile.linux.py         |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/build/bundle/bockbuild/unixprofile.py b/build/bundle/bockbuild/unixprofile.py
index 0114bf6..482ca29 100644
--- a/build/bundle/bockbuild/unixprofile.py
+++ b/build/bundle/bockbuild/unixprofile.py
@@ -6,7 +6,7 @@ class UnixProfile (Profile):
 		self.name = 'unix'
 
 		self.gcc_flags = [ '-I%{prefix}/include' ]
-		self.ld_flags = [ '-I%{prefix}/lib' ]
+		self.ld_flags = [ '-L%{prefix}/lib' ]
 
 		self.env.set ('PATH', ':',
 			'%{prefix}/bin',
diff --git a/build/bundle/profile.linux.py b/build/bundle/profile.linux.py
index 6b15d7b..f51c3f7 100755
--- a/build/bundle/profile.linux.py
+++ b/build/bundle/profile.linux.py
@@ -7,6 +7,7 @@ class BansheeLinuxProfile (UnixProfile, BansheePackages):
 	def __init__ (self):
 		UnixProfile.__init__ (self)
 		BansheePackages.__init__ (self)
+		self.name = 'linux'
 
 		import os
 		if not os.path.isdir ('/usr/include/alsa'):



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