Skip to content

Commit a4ab66c

Browse files
committed
Make the PYTHON_SHEBANG value configurable
and gitignore myrocks_hotbackup (as it's now generated) Closes #1081
1 parent 7334f97 commit a4ab66c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ storage/myisam/myisampack
189189
storage/myisam/rt_test
190190
storage/myisam/sp_test
191191
storage/rocksdb/ldb
192+
storage/rocksdb/myrocks_hotbackup
192193
storage/rocksdb/mysql_ldb
193194
storage/rocksdb/sst_dump
194195
storage/rocksdb/rdb_source_revision.h

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@ MYSQL_CHECK_SSL()
334334
MYSQL_CHECK_READLINE()
335335

336336
SET(MALLOC_LIBRARY "system")
337-
SET(PYTHON_SHEBANG "/usr/bin/env python")
337+
SET(PYTHON_SHEBANG "/usr/bin/env python" CACHE STRING "python shebang")
338+
MARK_AS_ADVANCED(PYTHON_SHEBANG)
338339

339340
CHECK_PCRE()
340341

0 commit comments

Comments
 (0)