Hi,

I have noticed that readline-6.1 (and 6.0) wants to install the
examples/*.c files under, e.g., /usr/share/readline/.

However that fails in a VPATH build (but luckily this failure is lateron
ignored).

The rule in examples/Makefile.in
        install:        installdirs
                @for f in $(SOURCES); do \
                        $(RM) $(DESTDIR)$(installdir)/$$f ; \
                        $(INSTALL_DATA) $$f $(DESTDIR)$(installdir) ; \
                done
ought to read
        install:        installdirs
                @for f in $(SOURCES); do \
                        $(RM) $(DESTDIR)$(installdir)/$$f ; \
                        $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(installdir) ; 
\
                done

Regards
Peter Breitenlohner <[email protected]>


_______________________________________________
Bug-readline mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-readline

Reply via email to