You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under some circumstances, the v4l/scripts/make_makefile.pl script can generate a 'find' command with bad arguments, resulting in a flood of error messages on make install. This only affects the removeubuntu function to remove installed files from Ubuntu/Debian locations. Replacing -name in the generated commands with -path addresses the issue.
Further, echo -e does not work correctly with the "dash" shell; as -e is not a supported flag in this shell. Replacing the echo -e with printf addresses this issue.
Under some circumstances, the
v4l/scripts/make_makefile.pl
script can generate a 'find' command with bad arguments, resulting in a flood of error messages onmake install
. This only affects theremoveubuntu
function to remove installed files from Ubuntu/Debian locations. Replacing-name
in the generated commands with-path
addresses the issue.Further,
echo -e
does not work correctly with the "dash" shell; as -e is not a supported flag in this shell. Replacing theecho -e
withprintf
addresses this issue.Proposed patch attached.
make_makefile.patch.txt
The text was updated successfully, but these errors were encountered: