Use env.Depends instead of env.Requires which isn't available in scons 96.93.
This commit is contained in:
parent
b13c83cd05
commit
fad708a5ca
1 changed files with 3 additions and 2 deletions
|
@ -372,8 +372,9 @@ if env["nls"] and env['PLATFORM'] != 'win32':
|
|||
"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
|
||||
|
|
Loading…
Add table
Reference in a new issue