buildvars.py.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. # This file is part of GNUnet.
  2. # (C) 2008--2013 Christian Grothoff (and other contributing authors)
  3. #
  4. # GNUnet is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published
  6. # by the Free Software Foundation; either version 2, or (at your
  7. # 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. # General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with GNUnet; see the file COPYING. If not, write to the
  16. # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17. # Boston, MA 02111-1307, USA.
  18. # file: testbed/buildvars.py
  19. # brief: file for importing variables from build syste into python
  20. # author: Sree Harsha Totakura
  21. import os
  22. exec_prefix = '@exec_prefix@'
  23. libexecdir = '@libexecdir@'
  24. if libexecdir.startswith (exec_prefix):
  25. libexecdir = libexecdir[len (exec_prefix):]
  26. gnunet_prefix = os.environ.get ('GNUNET_PREFIX', None)
  27. if gnunet_prefix and libexecdir.startswith ('/'):
  28. libexecdir = os.path.join (gnunet_prefix, libexecdir[1:])