diff options
author | Wolfgang Denk <wd@denx.de> | 2009-10-27 00:03:32 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-10-27 20:46:31 +0100 |
commit | a747a7f31059b9069e97c78bba5496409c33aa05 (patch) | |
tree | fbb86723c7f45116d198a7c6e4d4f47e95dce896 /include/common.h | |
parent | f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f (diff) | |
download | u-boot-a747a7f31059b9069e97c78bba5496409c33aa05.tar.gz |
Revert "env: only build env_embedded and envcrc when needed"
Breaks building on many boards, and no really clean fix available yet.
This reverts commit 6dab6add2d8ee80905234b326abc3de11be1d178.
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/common.h b/include/common.h index 7df9afab2b..f7c93bf5a6 100644 --- a/include/common.h +++ b/include/common.h @@ -719,9 +719,4 @@ int cpu_release(int nr, int argc, char *argv[]); #define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1) #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask)) -/* Pull in stuff for the build system */ -#ifdef DO_DEPS_ONLY -# include <environment.h> -#endif - #endif /* __COMMON_H_ */ |