- (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
|
20010101
|
||||||
- (bal) Minor fix to Makefile to stop rebuilding executables if no
|
- (bal) Minor fix to Makefile to stop rebuilding executables if no
|
||||||
changes have occured to any of the supporting code. Patch by
|
changes have occured to any of the supporting code. Patch by
|
||||||
|
|
|
@ -19,7 +19,7 @@ CC=@CC@
|
||||||
LD=@LD@
|
LD=@LD@
|
||||||
PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
|
PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
|
||||||
CFLAGS=@CFLAGS@
|
CFLAGS=@CFLAGS@
|
||||||
CPPFLAGS=@CPPFLAGS@ -I. -Iopenbsd-compat/ -I$(srcdir) $(PATHS) @DEFS@
|
CPPFLAGS=@CPPFLAGS@ -I. -I$(srcdir)/openbsd-compat -I$(srcdir) $(PATHS) @DEFS@
|
||||||
LIBS=@LIBS@
|
LIBS=@LIBS@
|
||||||
AR=@AR@
|
AR=@AR@
|
||||||
RANLIB=@RANLIB@
|
RANLIB=@RANLIB@
|
||||||
|
|
|
@ -3,10 +3,11 @@ piddir=@piddir@
|
||||||
srcdir=@srcdir@
|
srcdir=@srcdir@
|
||||||
top_srcdir=@top_srcdir@
|
top_srcdir=@top_srcdir@
|
||||||
|
|
||||||
|
VPATH=@srcdir@
|
||||||
CC=@CC@
|
CC=@CC@
|
||||||
LD=@LD@
|
LD=@LD@
|
||||||
CFLAGS=@CFLAGS@
|
CFLAGS=@CFLAGS@
|
||||||
CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) @DEFS@
|
CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) -I$(srcdir)/.. @DEFS@
|
||||||
LIBS=@LIBS@
|
LIBS=@LIBS@
|
||||||
AR=@AR@
|
AR=@AR@
|
||||||
RANLIB=@RANLIB@
|
RANLIB=@RANLIB@
|
||||||
|
|
Loading…
Reference in New Issue