bug-readline
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-readline] readline-6.1-release: install problem


From: Peter Breitenlohner
Subject: [Bug-readline] readline-6.1-release: install problem
Date: Fri, 5 Feb 2010 15:22:50 +0100 (CET)
User-agent: Alpine 2.00 (LNX 1167 2008-08-23)

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 <address@hidden>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]