Author: loonycyborg
Date: Wed Aug 20 16:00:49 2008
New Revision: 28787

URL: http://svn.gna.org/viewcvs/wesnoth?rev=28787&view=rev
Log:
Fixed crash when installing dummy locales if locales dir doesn't exist.

Modified:
    trunk/SConstruct

Modified: trunk/SConstruct
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/SConstruct?rev=28787&r1=28786&r2=28787&view=diff
==============================================================================
--- trunk/SConstruct (original)
+++ trunk/SConstruct Wed Aug 20 16:00:49 2008
@@ -358,7 +358,7 @@
     languages = map(lambda x: x + "@wesnoth", languages)
     for language in languages:
         env.Command(
-            os.path.join("locales", language),
+            Dir(os.path.join("locales", language)),
             "locales/C",
             "ln -sf $SOURCE.filebase $TARGET"
             )


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to