diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | openbsd-compat/Makefile.in | 3 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20010102 | ||
2 | - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen | ||
3 | <vinschen@redhat.com> | ||
4 | |||
1 | 20010101 | 5 | 20010101 |
2 | - (bal) Minor fix to Makefile to stop rebuilding executables if no | 6 | - (bal) Minor fix to Makefile to stop rebuilding executables if no |
3 | changes have occured to any of the supporting code. Patch by | 7 | changes have occured to any of the supporting code. Patch by |
diff --git a/Makefile.in b/Makefile.in index 91eb81efd..7880ab5e1 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -19,7 +19,7 @@ CC=@CC@ | |||
19 | LD=@LD@ | 19 | LD=@LD@ |
20 | PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" | 20 | PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" |
21 | CFLAGS=@CFLAGS@ | 21 | CFLAGS=@CFLAGS@ |
22 | CPPFLAGS=@CPPFLAGS@ -I. -Iopenbsd-compat/ -I$(srcdir) $(PATHS) @DEFS@ | 22 | CPPFLAGS=@CPPFLAGS@ -I. -I$(srcdir)/openbsd-compat -I$(srcdir) $(PATHS) @DEFS@ |
23 | LIBS=@LIBS@ | 23 | LIBS=@LIBS@ |
24 | AR=@AR@ | 24 | AR=@AR@ |
25 | RANLIB=@RANLIB@ | 25 | RANLIB=@RANLIB@ |
diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in index 1c745fb8c..f87396887 100644 --- a/openbsd-compat/Makefile.in +++ b/openbsd-compat/Makefile.in | |||
@@ -3,10 +3,11 @@ piddir=@piddir@ | |||
3 | srcdir=@srcdir@ | 3 | srcdir=@srcdir@ |
4 | top_srcdir=@top_srcdir@ | 4 | top_srcdir=@top_srcdir@ |
5 | 5 | ||
6 | VPATH=@srcdir@ | ||
6 | CC=@CC@ | 7 | CC=@CC@ |
7 | LD=@LD@ | 8 | LD=@LD@ |
8 | CFLAGS=@CFLAGS@ | 9 | CFLAGS=@CFLAGS@ |
9 | CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) @DEFS@ | 10 | CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) -I$(srcdir)/.. @DEFS@ |
10 | LIBS=@LIBS@ | 11 | LIBS=@LIBS@ |
11 | AR=@AR@ | 12 | AR=@AR@ |
12 | RANLIB=@RANLIB@ | 13 | RANLIB=@RANLIB@ |