diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-10-25 14:01:49 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-10-25 14:01:49 +0000 |
commit | 87f912c03f0c71385921970f4c3185908e4922bd (patch) | |
tree | 689c123d8011b49bc67597863de3075abdf38e53 /libc/misc | |
parent | b3430d5dc6dea930b9e3daae37439432a4e27b5c (diff) |
Doh. Add a missing #include to interp.c. I wonder why it used to
work? Perhaps the wrapper bug miles fixed? Regardless this is very
much needed.
-Erik
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/internals/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/misc/internals/Makefile b/libc/misc/internals/Makefile index 473ea926c..edb2ce471 100644 --- a/libc/misc/internals/Makefile +++ b/libc/misc/internals/Makefile @@ -42,6 +42,7 @@ ar-target: $(OBJS) interp.c: Makefile echo "/* Force shared libraries to know about the correct library loader */" > interp.c + echo "#include <features.h>" >> interp.c echo "#ifdef HAVE_ELF" >> interp.c echo "const char __dl_ldso__[] __attribute__ ((section " \ "(\".interp\"))) =\""$(DYNAMIC_LINKER)"\";" >> interp.c |