]> spindle.queued.net Git - midori/commitdiff
Use po directory either in current or parent folder
authorPeter de Ridder <peter@xfce.org>
Mon, 15 Feb 2010 21:34:28 +0000 (22:34 +0100)
committerChristian Dywan <christian@twotoasts.de>
Mon, 15 Feb 2010 23:59:42 +0000 (00:59 +0100)
wscript

diff --git a/wscript b/wscript
index c00c9a23fe94ccf3e35f5f2446d061bef9b1e918..f0f6881fa637637698d1c7bcb04c2562a915ba50 100644 (file)
--- a/wscript
+++ b/wscript
@@ -371,14 +371,19 @@ def set_options (opt):
 # Taken from Geany's wscript, modified to support LINGUAS variable
 def write_linguas_file (self):
     linguas = ''
+    # Depending on Waf version, getcwd() is different
+    if os.path.exists ('./po'):
+        podir = './po'
+    else:
+        podir = '../po'
     if 'LINGUAS' in Build.bld.env:
         linguas = Build.bld.env['LINGUAS']
     else:
-        files = os.listdir ('../po')
+        files = os.listdir (podir)
         for f in files:
             if f.endswith ('.po'):
                 linguas += '%s ' % f[:-3]
-    f = open ('../po/LINGUAS', 'w')
+    f = open (podir + '/LINGUAS', 'w')
     f.write ('# This file is autogenerated. Do not edit.\n%s\n' % linguas)
     f.close ()
 write_linguas_file = feature ('intltool_po')(write_linguas_file)