cmark

My personal build of CMark ✏️

Commit
039058608fec686dc19cacccefb8d425d7d94b26
Parent
a1eff0bc5359d4defaf3f0e96742daaf36985f08
Author
John MacFarlane <jgm@berkeley.edu>
Date

Use python, not python2, as name of python interpreter.

Partially reverts ba8f2c48b700a466a8cf7097d5f72d43372d4c37. See #251.

Diffstat

2 files changed, 2 insertions, 2 deletions

Status File Name N° Changes Insertions Deletions
Modified man/CMakeLists.txt 2 1 1
Modified test/CMakeLists.txt 2 1 1
diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt
@@ -1,4 +1,4 @@
-set(PYTHON python2)
+set(PYTHON python)
 
 if (NOT MSVC)
   add_custom_target(man ALL
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
@@ -1,6 +1,6 @@
 # To get verbose output: cmake --build build --target "test" -- ARGS='-V'
 
-set(PYTHON python2)
+set(PYTHON python)
 
 if (WIN32)
   file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR}/src WIN_DLL_DIR)