Skip to content

Commit ed5081f

Browse files
committed
Fix the audios.bin install path.
Apparently this has been wrong for months. Oops. Presumably, people figured out where else they could put the firmware to have it get found, but it's good to fix these things. Signed-off-by: Drew Fisher <[email protected]>
1 parent 3f4aba8 commit ed5081f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ IF(BUILD_AUDIO)
2626
add_custom_target(firmware ALL
2727
COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/fwfetcher.py" "../audios.bin"
2828
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/fwfetcher.py")
29-
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/../audios.bin" DESTINATION "${CMAKE_INSTALL_PREFIX}/share")
29+
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/../audios.bin" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/libfreenect")
3030
ENDIF()
3131
ENDIF()
3232

0 commit comments

Comments
 (0)