aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--applets/usage.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f6991ac4c..e97330a57 100644
--- a/Makefile
+++ b/Makefile
@@ -760,7 +760,7 @@ PHONY += prepare-all
760# 2) Create the include2 directory, used for the second asm symlink 760# 2) Create the include2 directory, used for the second asm symlink
761prepare3: .kernelrelease 761prepare3: .kernelrelease
762ifneq ($(KBUILD_SRC),) 762ifneq ($(KBUILD_SRC),)
763 @echo ' Using $(srctree) as source for kernel' 763 @echo ' Using $(srctree) as source for busybox'
764 $(Q)if [ -f $(srctree)/.config ]; then \ 764 $(Q)if [ -f $(srctree)/.config ]; then \
765 echo " $(srctree) is not clean, please run 'make mrproper'";\ 765 echo " $(srctree) is not clean, please run 'make mrproper'";\
766 echo " in the '$(srctree)' directory.";\ 766 echo " in the '$(srctree)' directory.";\
diff --git a/applets/usage.c b/applets/usage.c
index c128b52f8..4955839fc 100644
--- a/applets/usage.c
+++ b/applets/usage.c
@@ -1,7 +1,9 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2#include <unistd.h> 2#include <unistd.h>
3 3
4#include "autoconf.h" 4/* Just #include "autoconf.h" doesn't work for builds in separate
5 * object directory */
6#include "../include/autoconf.h"
5 7
6static const char usage_messages[] = "" 8static const char usage_messages[] = ""
7#define MAKE_USAGE 9#define MAKE_USAGE