Author: loonycyborg
Date: Mon Aug 25 12:16:12 2008
New Revision: 28964

URL: http://svn.gna.org/viewcvs/wesnoth?rev=28964&view=rev
Log:
Use env.Depends instead of env.Requires which isn't available in scons 96.93.

Modified:
    trunk/SConstruct

Modified: trunk/SConstruct
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/SConstruct?rev=28964&r1=28963&r2=28964&view=diff
==============================================================================
--- trunk/SConstruct (original)
+++ trunk/SConstruct Mon Aug 25 12:16:12 2008
@@ -372,8 +372,9 @@
             "ln -sf $SOURCE.filebase $TARGET"
             )
 
-    env.Requires(map(File, binary_nodes), Dir("locales"))
-    env.Requires(map(File, binary_nodes), Dir("translations"))
+# TODO: replace with env.Requires when compatibility with scons 0.96.93 isn't 
required anymore
+    env.Depends(map(File, binary_nodes), Dir("locales"))
+    env.Depends(map(File, binary_nodes), Dir("translations"))
 
 #
 # Unix installation productions


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

Reply via email to