This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug python/16090] New: Error in gdb-7.6.1/gdb/data-directory/Makefile.in install-python rule


https://sourceware.org/bugzilla/show_bug.cgi?id=16090

            Bug ID: 16090
           Summary: Error in gdb-7.6.1/gdb/data-directory/Makefile.in
                    install-python rule
           Product: gdb
           Version: 7.6
            Status: NEW
          Severity: normal
          Priority: P2
         Component: python
          Assignee: unassigned at sourceware dot org
          Reporter: gmc444 at yahoo dot com

In this Makefile, the  $INSTALL_DATA command looks like this:
      $(INSTALL_DATA) ./$(PYTHON_DIR)/$$file $(PYTHON_INSTALL_DIR)/$$dir ; 

This fails on the Python files to be installed with a file not found error.
Correcting it to 
      $(INSTALL_DATA) ./$(PYTHON_SRCDIR)/$$file $(PYTHON_INSTALL_DIR)/$$dir ; 

allowed the install to complete successfully. This was with a tarred version I
downloaded on Oct. 23.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]