https://git.reactos.org/?p=reactos.git;a=commitdiff;h=536623950ca51b0e47aa3104209cf891a28e2029
commit 536623950ca51b0e47aa3104209cf891a28e2029 Author: Thomas Faber <thomas.fa...@reactos.org> AuthorDate: Fri Mar 30 21:21:46 2018 +0200 Commit: Thomas Faber <thomas.fa...@reactos.org> CommitDate: Fri Mar 30 21:22:33 2018 +0200 [CMAKE] Fix command.com livecd.lst entry. CORE-14509 Spotted by Hermès. --- subsystems/mvdm/dos/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsystems/mvdm/dos/CMakeLists.txt b/subsystems/mvdm/dos/CMakeLists.txt index dd6b45ff01..4cfe8f68bf 100644 --- a/subsystems/mvdm/dos/CMakeLists.txt +++ b/subsystems/mvdm/dos/CMakeLists.txt @@ -1,4 +1,4 @@ include_directories(${REACTOS_SOURCE_DIR}/subsystems/mvdm/dos) add_asm16_bin(command ${CMAKE_CURRENT_BINARY_DIR}/command.com 0x0100 command.S) -add_cd_file(TARGET command FILE $<TARGET_PROPERTY:command,BINARY_PATH> DESTINATION reactos/system32 FOR all) +add_cd_file(TARGET command FILE ${CMAKE_CURRENT_BINARY_DIR}/command.com DESTINATION reactos/system32 FOR all)