diff options
-rw-r--r-- | Rules.mak | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -17,6 +17,11 @@ | |||
17 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 17 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
18 | # | 18 | # |
19 | 19 | ||
20 | # Pull in the user's busybox configuration | ||
21 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) | ||
22 | -include $(top_builddir)/.config | ||
23 | endif | ||
24 | |||
20 | #-------------------------------------------------------- | 25 | #-------------------------------------------------------- |
21 | PROG := busybox | 26 | PROG := busybox |
22 | MAJOR_VERSION :=1 | 27 | MAJOR_VERSION :=1 |
@@ -108,11 +113,6 @@ TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ | |||
108 | ) | 113 | ) |
109 | endif | 114 | endif |
110 | 115 | ||
111 | # Pull in the user's busybox configuration | ||
112 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) | ||
113 | -include $(top_builddir)/.config | ||
114 | endif | ||
115 | |||
116 | # A nifty macro to make testing gcc features easier | 116 | # A nifty macro to make testing gcc features easier |
117 | check_gcc=$(shell \ | 117 | check_gcc=$(shell \ |
118 | if [ "$(1)" != "" ]; then \ | 118 | if [ "$(1)" != "" ]; then \ |