mirror of git://anongit.mindrot.org/openssh.git
- (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
<vinschen@redhat.com>
This commit is contained in:
parent
e03c85d943
commit
2ffbbe6fc9
|
@ -1,3 +1,7 @@
|
|||
20010102
|
||||
- (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
|
||||
<vinschen@redhat.com>
|
||||
|
||||
20010101
|
||||
- (bal) Minor fix to Makefile to stop rebuilding executables if no
|
||||
changes have occured to any of the supporting code. Patch by
|
||||
|
|
|
@ -19,7 +19,7 @@ CC=@CC@
|
|||
LD=@LD@
|
||||
PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
|
||||
CFLAGS=@CFLAGS@
|
||||
CPPFLAGS=@CPPFLAGS@ -I. -Iopenbsd-compat/ -I$(srcdir) $(PATHS) @DEFS@
|
||||
CPPFLAGS=@CPPFLAGS@ -I. -I$(srcdir)/openbsd-compat -I$(srcdir) $(PATHS) @DEFS@
|
||||
LIBS=@LIBS@
|
||||
AR=@AR@
|
||||
RANLIB=@RANLIB@
|
||||
|
|
|
@ -3,10 +3,11 @@ piddir=@piddir@
|
|||
srcdir=@srcdir@
|
||||
top_srcdir=@top_srcdir@
|
||||
|
||||
VPATH=@srcdir@
|
||||
CC=@CC@
|
||||
LD=@LD@
|
||||
CFLAGS=@CFLAGS@
|
||||
CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) @DEFS@
|
||||
CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) -I$(srcdir)/.. @DEFS@
|
||||
LIBS=@LIBS@
|
||||
AR=@AR@
|
||||
RANLIB=@RANLIB@
|
||||
|
|
Loading…
Reference in New Issue