diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -535,11 +535,11 @@ PHONY += include/config/auto.conf | |||
535 | 535 | ||
536 | include/config/auto.conf: | 536 | include/config/auto.conf: |
537 | $(Q)test -e include/generated/autoconf.h -a -e $@ || ( \ | 537 | $(Q)test -e include/generated/autoconf.h -a -e $@ || ( \ |
538 | echo; \ | 538 | echo >&2; \ |
539 | echo " ERROR: Kernel configuration is invalid."; \ | 539 | echo >&2 " ERROR: Kernel configuration is invalid."; \ |
540 | echo " include/generated/autoconf.h or $@ are missing.";\ | 540 | echo >&2 " include/generated/autoconf.h or $@ are missing.";\ |
541 | echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ | 541 | echo >&2 " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ |
542 | echo; \ | 542 | echo >&2 ; \ |
543 | /bin/false) | 543 | /bin/false) |
544 | 544 | ||
545 | endif # KBUILD_EXTMOD | 545 | endif # KBUILD_EXTMOD |
@@ -796,8 +796,8 @@ prepare3: include/config/kernel.release | |||
796 | ifneq ($(KBUILD_SRC),) | 796 | ifneq ($(KBUILD_SRC),) |
797 | @$(kecho) ' Using $(srctree) as source for kernel' | 797 | @$(kecho) ' Using $(srctree) as source for kernel' |
798 | $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \ | 798 | $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \ |
799 | echo " $(srctree) is not clean, please run 'make mrproper'"; \ | 799 | echo >&2 " $(srctree) is not clean, please run 'make mrproper'"; \ |
800 | echo " in the '$(srctree)' directory.";\ | 800 | echo >&2 " in the '$(srctree)' directory.";\ |
801 | /bin/false; \ | 801 | /bin/false; \ |
802 | fi; | 802 | fi; |
803 | endif | 803 | endif |
@@ -971,11 +971,11 @@ else # CONFIG_MODULES | |||
971 | # --------------------------------------------------------------------------- | 971 | # --------------------------------------------------------------------------- |
972 | 972 | ||
973 | modules modules_install: FORCE | 973 | modules modules_install: FORCE |
974 | @echo | 974 | @echo >&2 |
975 | @echo "The present kernel configuration has modules disabled." | 975 | @echo >&2 "The present kernel configuration has modules disabled." |
976 | @echo "Type 'make config' and enable loadable module support." | 976 | @echo >&2 "Type 'make config' and enable loadable module support." |
977 | @echo "Then build a kernel with module support enabled." | 977 | @echo >&2 "Then build a kernel with module support enabled." |
978 | @echo | 978 | @echo >&2 |
979 | @exit 1 | 979 | @exit 1 |
980 | 980 | ||
981 | endif # CONFIG_MODULES | 981 | endif # CONFIG_MODULES |