bug-readline
[Top][All Lists]
Advanced

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

[Bug-readline] [patch] Remove . from the VPATH directive


From: Jan Kratochvil
Subject: [Bug-readline] [patch] Remove . from the VPATH directive
Date: Sat, 2 Apr 2011 21:03:45 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

Hi Chet,

there was a patch in the sourceware tree:
        Two patches for the readline lib
        http://sourceware.org/ml/gdb-patches/1999-q1/msg00092.html

Robert Hoehne wrote:
# Additinally I patched the Makefile.in by removing the current directory from
# VPATH, since it is already there by default and it confuse GNU make to find
# the sources on DJGPP where ';' is the path spearator and not ':'.

I also do not see a reason for having . in the VPATH.


Thanks,
Jan


1999-03-23  Robert Hoehne  <address@hidden>

        * Makefile.in: Remove . from the VPATH directive.

2011-04-02  Jan Kratochvil  <address@hidden>

        * doc/Makefile.in: Remove . from the VPATH directive.
        * examples/Makefile.in: Likewise.
        * shlib/Makefile.in: Likewise.

--- /home/jkratoch/t/readline-6.2-001/Makefile.in       2010-10-11 
17:53:52.000000000 +0200
+++ readline-vpath/Makefile.in  2011-04-02 20:54:33.000000000 +0200
@@ -27,7 +27,7 @@ PACKAGE_STRING = @PACKAGE_STRING@
 PACKAGE_VERSION = @PACKAGE_VERSION@
 
 srcdir = @srcdir@
-VPATH = .:@srcdir@
+VPATH = @srcdir@
 top_srcdir = @top_srcdir@
 BUILD_DIR = @BUILD_DIR@
 
--- /home/jkratoch/t/readline-6.2-001/doc/Makefile.in   2009-12-23 
16:42:59.000000000 +0100
+++ readline-vpath/doc/Makefile.in      2011-04-02 20:55:03.000000000 +0200
@@ -18,7 +18,7 @@
 
 topdir = @top_srcdir@
 srcdir = @srcdir@
-VPATH = .:@srcdir@
+VPATH = @srcdir@
 
 prefix = @prefix@
 
--- /home/jkratoch/t/readline-6.2-001/examples/Makefile.in      2010-12-28 
21:55:32.000000000 +0100
+++ readline-vpath/examples/Makefile.in 2011-04-02 20:54:36.000000000 +0200
@@ -29,7 +29,7 @@ datarootdir = @datarootdir@
 bindir = @bindir@
 srcdir = @srcdir@
 datadir = @datadir@
-VPATH = .:@srcdir@
+VPATH = @srcdir@
 top_srcdir = @top_srcdir@
 #BUILD_DIR = .
 BUILD_DIR = @BUILD_DIR@
--- /home/jkratoch/t/readline-6.2-001/shlib/Makefile.in 2010-12-28 
21:56:21.000000000 +0100
+++ readline-vpath/shlib/Makefile.in    2011-04-02 20:55:16.000000000 +0200
@@ -30,7 +30,7 @@ RL_LIBRARY_NAME = readline
 datarootdir = @datarootdir@
 
 srcdir = @srcdir@
-VPATH = .:@top_srcdir@
+VPATH = @top_srcdir@
 topdir = @top_srcdir@
 BUILD_DIR = @BUILD_DIR@
 



reply via email to

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