Skip to content

Commit f726cc1

Browse files
committed
fix PYZMQ_NO_BUNDLE option name
Fix the CMake `option()` name from `PYZMQ_LIBZMQ_NO_BUNDLE` to `PYZMQ_NO_BUNDLE`. The latter is actually used below as the environment variable and as the actual condition, as well as in the documentation. Given that there are projects already using it, just fix the name passed to `option()` to match.
1 parent 7ba9349 commit f726cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ option(ZMQ_DRAFT_API "whether to build the libzmq draft API" OFF)
2121
option(PYZMQ_LIBZMQ_RPATH "Add $ZMQ_PREFIX/lib to $RPATH (true by default). Set to false if libzmq will be bundled or relocated and RPATH is handled separately" ON)
2222

2323
# anything new should start with PYZMQ_
24-
option(PYZMQ_LIBZMQ_NO_BUNDLE "Prohibit building bundled libzmq. Useful for repackaging, to allow default search for libzmq and requiring it to succeed." OFF)
24+
option(PYZMQ_NO_BUNDLE "Prohibit building bundled libzmq. Useful for repackaging, to allow default search for libzmq and requiring it to succeed." OFF)
2525
set(PYZMQ_LIBZMQ_VERSION "4.3.5" CACHE STRING "libzmq version when bundling")
2626
set(PYZMQ_LIBSODIUM_VERSION "1.0.20" CACHE STRING "libsodium version when bundling")
2727
set(PYZMQ_LIBZMQ_URL "" CACHE STRING "full URL to download bundled libzmq")

0 commit comments

Comments
 (0)