Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions recipes-devtools/memcapture/memcapture_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ do_install () {
install -d ${D}${bindir}
install -m 4755 ${B}/MemCapture ${D}${bindir}
}

FILES:${PN} += "${bindir}/MemCapture \
"
Comment on lines +34 to +35
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The trailing backslash on line 34 is unnecessary since there are no additional continuation lines after line 35. This creates maintainability issues as it suggests more content should follow when none does. Remove the backslash from line 34 or remove the empty continuation line 35 entirely.

Suggested change
FILES:${PN} += "${bindir}/MemCapture \
"
FILES:${PN} += "${bindir}/MemCapture"

Copilot uses AI. Check for mistakes.
Loading