[Buildroot] Problem with external-toolchain copy_toolchain_lib_root

hartleys hartleys at visionengravers.com
Mon Jul 7 17:04:02 UTC 2008


Hello all,

I'm not sure if this is a problem with the find utility on my system
(Debian etch) or a problem in the ext-tool.mk file. The problem is my
external library files were getting found but not copied to my root
filesystem.

The following change to ext-tool.mk fixed the problem.

Thanks,
Hartley


@@ -18,7 +18,7 @@
 	fi; \
  \
 	LIB="$(strip $1)"; \
-	for FILE in `find $${LIB_DIR} -maxdepth 1 -type l -name
"$${LIB}*"`; do \
+	for FILE in `find $${LIB_DIR}/ -maxdepth 1 -type l -name
"$${LIB}*"`; do \
 		LIB=`basename $${FILE}`; \
 		while test \! -z "$${LIB}"; do \
 			echo "copy_toolchain_lib_root lib=$${LIB}
dst=$${DST}"; \




More information about the buildroot mailing list