From 26791bd994a782f3c1c517440056030f19a53762 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 30 Jan 2020 09:50:30 -0500 Subject: [PATCH] CMake: correct ENV syntax --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1edd18b5f..0d35e1f66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -505,7 +505,7 @@ install(TARGETS notcurses COMPONENT Development ) if(${BUILD_PYTHON}) - if(DEFINED $ENV{DEB_BUILD_ARCH}) + if(DEFINED ENV{DEB_BUILD_ARCH}) install( CODE "execute_process(COMMAND ${Python3_EXECUTABLE} ${SETUP_PY} install --root=${CMAKE_SOURCE_DIR}/debian/python3-notcurses --install-layout=deb --prefix=${CMAKE_INSTALL_PREFIX} WORKING_DIRECTORY ../python)")