summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-02 00:00:54 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-02 00:00:54 +0000
commit2ffbbe6fc9788eeccb077c0d025c6b92fbbc527c (patch)
tree6c83b562277b6334eca2a32733e0efc391179e0d
parente03c85d9430b31a1bed14e5e3d78bb493c747bca (diff)
- (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
<vinschen@redhat.com>
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in2
-rw-r--r--openbsd-compat/Makefile.in3
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8edb20df7..a4ea90a82 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120010102
2 - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
3 <vinschen@redhat.com>
4
120010101 520010101
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@
19LD=@LD@ 19LD=@LD@
20PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" 20PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
21CFLAGS=@CFLAGS@ 21CFLAGS=@CFLAGS@
22CPPFLAGS=@CPPFLAGS@ -I. -Iopenbsd-compat/ -I$(srcdir) $(PATHS) @DEFS@ 22CPPFLAGS=@CPPFLAGS@ -I. -I$(srcdir)/openbsd-compat -I$(srcdir) $(PATHS) @DEFS@
23LIBS=@LIBS@ 23LIBS=@LIBS@
24AR=@AR@ 24AR=@AR@
25RANLIB=@RANLIB@ 25RANLIB=@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@
3srcdir=@srcdir@ 3srcdir=@srcdir@
4top_srcdir=@top_srcdir@ 4top_srcdir=@top_srcdir@
5 5
6VPATH=@srcdir@
6CC=@CC@ 7CC=@CC@
7LD=@LD@ 8LD=@LD@
8CFLAGS=@CFLAGS@ 9CFLAGS=@CFLAGS@
9CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) @DEFS@ 10CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) -I$(srcdir)/.. @DEFS@
10LIBS=@LIBS@ 11LIBS=@LIBS@
11AR=@AR@ 12AR=@AR@
12RANLIB=@RANLIB@ 13RANLIB=@RANLIB@