Skip to content

Commit

Permalink
Merge branch 'topic/timw/python-executable-path'
Browse files Browse the repository at this point in the history
* topic/timw/python-executable-path:
  Use the right CMake variable for python executable
  • Loading branch information
timwoj committed Aug 7, 2023
2 parents 4b61af7 + 5b45841 commit 81e8c48
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.5.0-37 | 2023-08-07 09:32:38 -0700

* Use the right CMake variable for python executable (Tim Wojtulewicz, Corelight)

* Revert update to Python 3.7 (Tim Wojtulewicz, Corelight)

2.5.0-34 | 2023-08-02 11:35:59 -0700

* Remove usage of FindRequiredPackage (Tim Wojtulewicz, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.0-34
2.5.0-37
3 changes: 1 addition & 2 deletions ZeekControl/ssh_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

def get_muxer(shell):
# The full path of the Python interpreter. Configured by CMake.
pythonpath = "@PYTHON_EXECUTABLE@"
pythonpath = "@Python_EXECUTABLE@"

muxer = r"""
import os,sys,subprocess,signal,select,json
Expand Down Expand Up @@ -352,4 +352,3 @@ def shutdown_all(self):
self.masters = {}

__del__ = shutdown_all

2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ while [ $# -ne 0 ]; do
append_cache_entry PCAP_ROOT_DIR PATH $optarg
;;
--with-python=*)
append_cache_entry PYTHON_EXECUTABLE PATH $optarg
append_cache_entry Python_EXECUTABLE PATH $optarg
;;
--with-python-lib=*)
append_cache_entry PYTHON_LIBRARY PATH $optarg
Expand Down
2 changes: 1 addition & 1 deletion doc/main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.. Note: This file includes further autogenerated ones.
..
.. Version number is filled in automatically.
.. |version| replace:: 2.5.0-34
.. |version| replace:: 2.5.0-37

===========
ZeekControl
Expand Down

0 comments on commit 81e8c48

Please sign in to comment.