[re-send] On Mon, 8 Aug 2016, frank paulsen wrote: > in 4.8-rc1 "make bindeb-pkg O=../debian" fails: > | find: `scripts/gcc-plugins': No such file or directory > | /usr/src/linus/scripts/package/Makefile:97: recipe for target > 'bindeb-pkg' failed > > this is due to a missing directory scripts/gcc-plugins if using O= > > removing line 335 of scripts/package/builddeb helps: > | (cd $objtree; find scripts/gcc-plugins -name \*.so -o -name > gcc-common.h) >> "$objtree/debian/hdrobjfiles" > > this clearly isn't the right fix, but i checked it anyway and the > paket gets built. This was introduced in 6b90bd4ba40b38dc13c2782469c1c77e4ed79915 ("GCC plugin infrastructure"). Not failing hard when scripts/gcc-plugins cannot be found, does the trick as well. But that too just papers over the issue. Hopefully Emese has a better idea on how to solve this :-) diff --git a/scripts/package/builddeb b/scripts/package/builddeb index e1c09e2..89757f6 100755 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -332,7 +332,7 @@ if grep -q '^CONFIG_STACK_VALIDATION=y' $KCONFIG_CONFIG ; then (cd $objtree; find tools/objtool -type f -executable) >> "$objtree/debian/hdrobjfiles" fi (cd $objtree; find arch/$SRCARCH/include Module.symvers include scripts -type f) >> "$objtree/debian/hdrobjfiles" -(cd $objtree; find scripts/gcc-plugins -name \*.so -o -name gcc-common.h) >> "$objtree/debian/hdrobjfiles" +(cd $objtree; find scripts/gcc-plugins -name \*.so -o -name gcc-common.h) >> "$objtree/debian/hdrobjfiles" || true destdir=$kernel_headers_dir/usr/src/linux-headers-$version mkdir -p "$destdir" (cd $srctree; tar -c -f - -T -) < "$objtree/debian/hdrsrcfiles" | (cd $destdir; tar -xf -) Thanks, Christian. -- BOFH excuse #269: Melting hard drives -- make bzImage, not war -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html