Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sjhbuild
diff options
context:
space:
mode:
authortomeu <tomeu@localhost.(none)>2009-03-17 17:57:05 (GMT)
committer Tomeu Vizoso <tomeu@sugarlabs.org>2009-03-17 18:04:03 (GMT)
commitfcf8dc1e73f8da5a67639a89940fd10744d03915 (patch)
treec696a08b767e38743d4a8c9014987c97587292a7 /sjhbuild
parentce74db3f4c19505a167715ad198a487e328af453 (diff)
Add Mandriva support
Diffstat (limited to 'sjhbuild')
-rw-r--r--sjhbuild/sysdeps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sjhbuild/sysdeps.py b/sjhbuild/sysdeps.py
index b398cff..cd92253 100644
--- a/sjhbuild/sysdeps.py
+++ b/sjhbuild/sysdeps.py
@@ -46,7 +46,7 @@ def get_distribution():
def check_package(package):
name, version = get_distribution()
- if name == 'fedora':
+ if name in ['fedora', 'mandrivalinux']:
ret = subprocess.call(['rpm', '--quiet', '-q', package])
return ret == 0
elif name in ['ubuntu', 'debian']: