Skip to content

Commit

Permalink
correct Windows ULP path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Sep 19, 2024
1 parent 4f162c8 commit b2a9189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/frameworks/ulp.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def _generate_ulp_configuration_action(env, target, source):
"-DSDKCONFIG_HEADER=" + os.path.join(BUILD_DIR, "config", "sdkconfig.h"),
"-DPYTHON=" + env.subst("$PYTHONEXE"),
"-DSDKCONFIG_CMAKE=" + os.path.join(BUILD_DIR, "config", "sdkconfig.cmake"),
"-DCMAKE_MODULE_PATH=" + os.path.join(fs.to_unix_path(FRAMEWORK_DIR), "components", "ulp", "cmake"),
"-DCMAKE_MODULE_PATH=" + fs.to_unix_path(os.path.join(FRAMEWORK_DIR, "components", "ulp", "cmake")),
"-GNinja",
"-B",
ULP_BUILD_DIR,
Expand Down

0 comments on commit b2a9189

Please sign in to comment.