aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/buildvars.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/testbed/buildvars.py.in')
-rw-r--r--src/testbed/buildvars.py.in31
1 files changed, 15 insertions, 16 deletions
diff --git a/src/testbed/buildvars.py.in b/src/testbed/buildvars.py.in
index 3ed65ad82..01a3eb6df 100644
--- a/src/testbed/buildvars.py.in
+++ b/src/testbed/buildvars.py.in
@@ -1,24 +1,22 @@
1# This file is part of GNUnet. 1# This file is part of GNUnet.
2# (C) 2008--2013 Christian Grothoff (and other contributing authors) 2# (C) 2008--2013, 2018 Christian Grothoff (and other contributing authors)
3# 3#
4# GNUnet is free software; you can redistribute it and/or modify 4# GNUnet is free software: you can redistribute it and/or modify it
5# it under the terms of the GNU General Public License as published 5# under the terms of the GNU Affero General Public License as published
6# by the Free Software Foundation; either version 2, or (at your 6# by the Free Software Foundation, either version 3 of the License,
7# option) any later version. 7# or (at your option) any later version.
8# 8#
9# GNUnet is distributed in the hope that it will be useful, but 9# GNUnet is distributed in the hope that it will be useful, but
10# WITHOUT ANY WARRANTY; without even the implied warranty of 10# WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12# General Public License for more details. 12# Affero General Public License for more details.
13# 13#
14# You should have received a copy of the GNU General Public License 14# You should have received a copy of the GNU Affero General Public License
15# along with GNUnet; see the file COPYING. If not, write to the 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17# Boston, MA 02110-1301, USA.
18 16
19 17
20# file: testbed/buildvars.py 18# file: testbed/buildvars.py
21# brief: file for importing variables from build syste into python 19# brief: file for importing variables from build system into python
22# author: Sree Harsha Totakura 20# author: Sree Harsha Totakura
23 21
24import os 22import os
@@ -26,9 +24,10 @@ import os
26exec_prefix = '@exec_prefix@' 24exec_prefix = '@exec_prefix@'
27libexecdir = '@libexecdir@' 25libexecdir = '@libexecdir@'
28 26
29if libexecdir.startswith (exec_prefix): 27if libexecdir.startswith(exec_prefix):
30 libexecdir = libexecdir[len (exec_prefix):] 28 libexecdir = libexecdir[len(exec_prefix):]
31 29
32gnunet_prefix = os.environ.get ('GNUNET_PREFIX', None) 30gnunet_prefix = os.environ.get('GNUNET_PREFIX', None)
33if gnunet_prefix and libexecdir.startswith ('/'): 31
34 libexecdir = os.path.join (gnunet_prefix, libexecdir[1:]) 32if gnunet_prefix and libexecdir.startswith('/'):
33 libexecdir = os.path.join(gnunet_prefix, libexecdir[1:])