Part Number: BEAGLEBOARD-X15
Tool/software: Linux
Hi everybody,
The top level Makefile is using the find command to change directories with wildcard searches. Some of the example applications will return more than one result and the cd command will fail. So the top level make fails.
To fix it...
- gedit ~/ti-processor-sdk-linux-am57xx-evm-06.00.00.07/Makefile
- ctrl-h
- Replace "cd `find . -name" with "cd `find . -type d -name"
- Replace all
- save
...and the build succeeds.
Oh, and I'm running ubuntu 18.04.2. Perhaps find returns only one result in 14 or 16.
Hope this helps someone someday.
Nathan