Fixed default value of datadir.

This commit is contained in:
Sergey Popov 2008-05-08 19:01:11 +00:00
parent 1d83dc025a
commit 9eb5e1d320

View file

@ -32,7 +32,7 @@ opts.AddOptions(
ListOption('build', 'Build variant: debug or release', "release", ["release", "debug"]),
PathOption('bindir', 'Where to install binaries', "bin", PathOption.PathAccept),
('cachedir', 'Directory that contains a cache of derived files.', ''),
PathOption('datadir', 'read-only architecture-independent game data', "share/$datadirname", PathOption.PathAccept),
PathOption('datadir', 'read-only architecture-independent game data', "$datarootdir/$datadirname", PathOption.PathAccept),
BoolOption('dummy_locales','Set to enable Wesnoth private locales', False),
PathOption('fifodir', 'directory for the wesnothd fifo socket file', "/var/run/wesnothd", PathOption.PathAccept),
BoolOption('fribidi','Clear to disable bidirectional-language support', True),