Make build ID lossage break the build.

This commit is contained in:
Roland McGrath 2010-08-16 18:15:33 -07:00
parent 996221cf49
commit 9b36e5826d
1 changed files with 4 additions and 1 deletions

View File

@ -1477,11 +1477,14 @@ BuildKernel() {
# Copy .config to include/config/auto.conf so "make prepare" is unnecessary. # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
%if %{fancy_debuginfo}
if test -s vmlinux.id; then if test -s vmlinux.id; then
cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id
else else
echo >&2 "*** WARNING *** no vmlinux build ID! ***" echo >&2 "*** ERROR *** no vmlinux build ID! ***"
exit 1
fi fi
%endif
# #
# save the vmlinux file for kernel debugging into the kernel-debuginfo rpm # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm