diff options
author | Michael Elkins <melkins@tislabs.com> | 2013-04-03 21:46:33 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2013-04-03 21:46:33 +0000 |
commit | 3f0a32b5756d9c76305de6225bbeb92601e9170c (patch) | |
tree | 2443c8fc70530ec62a69bcb88ebe3dc6ea3c8b5e /buildtools/make-python-executable.py | |
parent | f10d649b294eafa7f3146f81edc48aed16e7bb9d (diff) |
merge /trunk
svn path=/branches/tk500/; revision=5263
Diffstat (limited to 'buildtools/make-python-executable.py')
-rw-r--r-- | buildtools/make-python-executable.py | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/buildtools/make-python-executable.py b/buildtools/make-python-executable.py index eeb31e39..5dc848f4 100644 --- a/buildtools/make-python-executable.py +++ b/buildtools/make-python-executable.py @@ -1,11 +1,11 @@ """ -Convert a Python script into an executable Python script. Mostly this -means constructing a header based on a few parameters supplied by -autoconf. +Convert a Python script into an executable Python script. This used +to do something more complicated, at this point it just adds the +shebang line. $Id$ -Copyright (C) 2011 Internet Systems Consortium ("ISC") +Copyright (C) 2011-2013 Internet Systems Consortium ("ISC") Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -20,19 +20,7 @@ OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. """ -import os, sys - -sys.stdout.write('''\ -#!%(AC_PYTHON_INTERPRETER)s -# Automatically constructed script header - -# Set location of global rpki.conf file -if __name__ == "__main__": - import rpki.config - rpki.config.default_dirname = "%(AC_RPKI_CONFIG_DIR)s" - -# Original script starts here - -''' % os.environ) +import sys +sys.stdout.write("#!%s\n" % sys.executable) sys.stdout.write(sys.stdin.read()) |