diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-03-31 22:44:19 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-13 00:26:39 -0500 |
commit | eb56ff55d410c8aa37161a0cd14c3d6850e85584 (patch) | |
tree | e0699e3554f2ba8779180168236dda596a3a7d04 /Rules.mak | |
parent | 218bacae45c633536bed31c0cbe2f457cb378199 (diff) |
buildsys: tweak ucontext_i.h prerequisites
ucontext_i.h too depends on uClibc_config.h.
Update it to look like the other MANGLE generated files and tweak
prereqs
Fixes: make realclean ; make -j libc/misc/internals/__uClibc_main.i
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -165,7 +165,8 @@ libpthread.depend := $(top_builddir)lib/libpthread.so endif interp := $(top_builddir)lib/interp.os ldso := $(top_builddir)lib/$(UCLIBC_LDSO) -headers_dep := $(top_builddir)include/bits/sysnum.h +headers_dep := $(top_builddir)include/bits/sysnum.h \ + $(top_builddir)include/bits/uClibc_config.h sub_headers := $(headers_dep) #LIBS :=$(interp) -L$(top_builddir)lib -lc |