diff options
author | Samuel Martin <s.martin49@gmail.com> | 2011-10-23 20:51:12 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-28 14:41:26 +0200 |
commit | 934fb90437e06209145387d9bdfe8a8b5426d31d (patch) | |
tree | ff5c7d6e96ce20fd95120afae5ec432199c77bf0 | |
parent | 9b3526f56af35ae1db41b3620513f7065dcfc8d4 (diff) |
crosstool-ng: fix ccache dependencies order
avoid gawk complaining when running 'make ctng-menuconfig' in a
clean/distclean tree in which ccache and crosstool-ng are enabled
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/crosstool-ng/crosstool-ng.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/crosstool-ng/crosstool-ng.mk b/package/crosstool-ng/crosstool-ng.mk index 8f53a77c8..84e218e9d 100644 --- a/package/crosstool-ng/crosstool-ng.mk +++ b/package/crosstool-ng/crosstool-ng.mk @@ -4,6 +4,6 @@ CROSSTOOL_NG_SITE = http://crosstool-ng.org/download/crosstool-ng/ CROSSTOOL_NG_INSTALL_STAGING = NO CROSSTOOL_NG_INSTALL_TARGET = NO CROSSTOOL_NG_MAKE = $(MAKE1) -HOST_CROSSTOOL_NG_DEPENDENCIES = host-gawk host-automake $(if $(BR2_CCACHE),host-ccache) +HOST_CROSSTOOL_NG_DEPENDENCIES = $(if $(BR2_CCACHE),host-ccache) host-gawk host-automake $(eval $(call AUTOTARGETS,host)) |