Re: [syslinux] Etherboot and gpxe
Joshua Oreman <[email protected]>
| Newsgroups | gmane.network.etherboot.user |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Aug 4, 2009 at 2:18 PM, Joyce Yu<[email protected]> wrote: > Josh, > > I got the same problem as you had. It got fixed after #include > <gpxe/timer.h> indstead of "timer.h". > > I am using the 3.80 make: > GNU Make 3.80 > Copyright (C) 2002 Free Software Foundation, Inc. > This is free software; see the source for copying conditions. > There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A > PARTICULAR PURPOSE. Seems it's a recent change, then. I've attached a fix that limits the dependencies of the .d file to files that exist, to work around the issue for older Makes. -- Josh ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Etherboot-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/etherboot-discuss
make-loop.patch
(text/x-diff, 492 B)
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index cf7a9c7..2c8d2a2 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -444,7 +444,7 @@ define src_template '\n\t$$(QM)$(ECHO) " [BUILD] $$@"' \ '\n\t$$(RULE_$(3)_to_$(TGT))\n' \ '\n$(TGT)_OBJS += $$(BIN)/$(4).$(TGT)\n' ) ) \ - '\n$(2) : $$($(4)_DEPS)\n' \ + '\n$(2) : $$(wildcard $$($(4)_DEPS))\n' \ '\nTAGS : $$($(4)_DEPS)\n' \ >> $(2) @$(PARSEROM) $(1) >> $(2)