From: Forest W <lyr...@ww...> - 2003-03-26 00:43:22
|
>If I look at my Makefile.in I see > > VPATH =3D = $(srcdir)/..:$(srcdir)/xmltok:$(srcdir)/xmlwf:$(srcdir)/xmlparse > >(in line 301) and the same is true for the generated Makefile. This is >different from what you are reporting. > >Do you have the leading / in your Makefile.in also ? > >If yes it is damaged, IMHO. If not we have a very weird situation, = because >the >transformation from Makefile.in to Makefile should leave the above line >alone. No; expat/Makefile.in:301 sets VPATH to: $(srcdir)/..:$(srcdir)/xmltok:$(srcdir)/xmlwf:$(srcdir)/xmlparse As you can see, the leading $(srcdir) is present here. The Makefile generated by configure sets VPATH to: /..:$(srcdir)/xmltok:$(srcdir)/xmlwf:$(srcdir)/xmlparse However, when I delete the generated Makefile, run autoconf, and then run configure again, the new Makefile sets VPATH to: $(srcdir)/..:$(srcdir)/xmltok:$(srcdir)/xmlwf:$(srcdir)/xmlparse What do you think of that? |