On Friday 04 December 2009, Tatsuro MATSUOKA wrote:
> Hello
>
> I found inconsistency in makefile.mgw in the current cvs source.
> In install section of makefile.mgw
>
> mkdir -p $(DESTDIR)/share/PostScript
> cp ../term/PostScript/*.ps $(DESTDIR)/$(GNUPLOT_PS_DIR)
>
> The above does not work correct if GNUPLOT_PS_DIR is not share/PostScipt.
>
> Is the above to be the following
> mkdir -p $(DESTDIR)/$(GNUPLOT_PS_DIR)
> cp ../term/PostScript/*.ps $(DESTDIR)/$(GNUPLOT_PS_DIR)
>
>
> I made a patch for makefile.mgw according the above.
OK. Applied to 4.4 and 4.5
> Perhaps similar correction should be made for makefile.cyg.
Yes. That looks correct. Actually it seems there is an error in the
order of directory creation in makefile.cyg, but this will fix it.
Ethan
>
> Regards
>
> Tatsuro
|