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.in34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/testbed/buildvars.py.in b/src/testbed/buildvars.py.in
deleted file mode 100644
index 3b2f56118..000000000
--- a/src/testbed/buildvars.py.in
+++ /dev/null
@@ -1,34 +0,0 @@
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# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16#
17# SPDX-License-Identifier: AGPL3.0-or-later
18
19# file: testbed/buildvars.py
20# brief: file for importing variables from build system into python
21# author: Sree Harsha Totakura
22
23import os
24
25exec_prefix = '@exec_prefix@'
26libexecdir = '@libexecdir@'
27
28if libexecdir.startswith(exec_prefix):
29 libexecdir = libexecdir[len(exec_prefix):]
30
31gnunet_prefix = os.environ.get('GNUNET_PREFIX', None)
32
33if gnunet_prefix and libexecdir.startswith('/'):
34 libexecdir = os.path.join(gnunet_prefix, libexecdir[1:])