Skip to content

Commit a5665bb

Browse files
committed
Merge branch 'main' into try_except_tc_hierarchy
2 parents 18d33cb + 4687f94 commit a5665bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eb_hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ def pre_configure_hook_cmake_system(self, *args, **kwargs):
957957
if is_system_toolchain(self.toolchain.name):
958958
self.log.info("Removing configure options that require ncurses static libraries...")
959959
self.log.info(f"Original configopts value: {self.cfg['configopts']}")
960-
regex = re.compile("-DCURSES_[A-Z]+_LIBRARY=\$EBROOTNCURSES/lib/lib[a-z]+\.a")
960+
regex = re.compile(r"-DCURSES_[A-Z]+_LIBRARY=\$EBROOTNCURSES/lib/lib[a-z]+\.a")
961961
self.cfg['configopts'] = regex.sub(self.cfg['configopts'], '')
962962
self.log.info(f"Updated configopts value: {self.cfg['configopts']}")
963963
else:

0 commit comments

Comments
 (0)