This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
We have to pass sysincludes to isomac in case that --with-headers is
given and /usr/include/{asm,linux} is not setup yet.
Here's a patch, I've committed it already,
Andreas
2001-01-23 Andreas Jaeger <aj@suse.de>
* stdlib/Makefile ($(objpfx)isomac.out): Also pass sysincludes to isomac.
============================================================
Index: stdlib/Makefile
--- stdlib/Makefile 2001/01/20 03:35:17 1.69
+++ stdlib/Makefile 2001/01/23 12:45:14
@@ -135,7 +135,8 @@
tests: $(objpfx)isomac.out $(objpfx)tst-fmtmsg.out
$(objpfx)isomac.out: $(objpfx)isomac
- $(dir $<)$(notdir $<) '$(CC)' '-I../include -I.. $(+sysdep-includes)' > $<.out
+ $(dir $<)$(notdir $<) '$(CC)' \
+ '-I../include -I.. $(+sysdep-includes) $(sysincludes)' > $<.out
$(objpfx)isomac: isomac.c
$(native-compile)
--
Andreas Jaeger
SuSE Labs aj@suse.de
private aj@arthur.inka.de
http://www.suse.de/~aj
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |