glitch in the license text detected by hyazinthe, thank you!
[oweals/gnunet.git] / src / testbed / buildvars.py.in
1 # This file is part of GNUnet.
2 # (C) 2008--2013, 2018 Christian Grothoff (and other contributing authors)
3 #
4 # GNUnet is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU Affero General Public License as published
6 # by the Free Software Foundation, either version 3 of the License,
7 # or (at your option) any later version.
8 #
9 # GNUnet is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Affero General Public License for more details.
13
14
15 # file:     testbed/buildvars.py
16 # brief:    file for importing variables from build system into python
17 # author:   Sree Harsha Totakura
18
19 import os
20
21 exec_prefix = '@exec_prefix@'
22 libexecdir = '@libexecdir@'
23
24 if libexecdir.startswith(exec_prefix):
25     libexecdir = libexecdir[len(exec_prefix):]
26
27 gnunet_prefix = os.environ.get('GNUNET_PREFIX', None)
28
29 if gnunet_prefix and libexecdir.startswith('/'):
30     libexecdir = os.path.join(gnunet_prefix, libexecdir[1:])