From: Ezra Peisach Date: Sun, 17 Aug 1997 18:25:09 +0000 (+0000) Subject: * Makefile.in (SRCS): Add $(srcdir) where needed X-Git-Tag: krb5-1.1-beta1~1050 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=df3eb6bad823133a1cf7ea0fc24ec9b3f818a33f;p=krb5.git * Makefile.in (SRCS): Add $(srcdir) where needed git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10175 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/gssftp/ftp/ChangeLog b/src/appl/gssftp/ftp/ChangeLog index 5d04a3270..1205eaece 100644 --- a/src/appl/gssftp/ftp/ChangeLog +++ b/src/appl/gssftp/ftp/ChangeLog @@ -1,3 +1,7 @@ +Sun Aug 17 14:23:39 1997 Ezra Peisach + + * Makefile.in (SRCS): Add $(srcdir) where needed. + Wed Apr 30 14:59:03 1997 Theodore Ts'o * cmds.c (getit): Fix Y2K bug in the parsing of the MDTM command. diff --git a/src/appl/gssftp/ftp/Makefile.in b/src/appl/gssftp/ftp/Makefile.in index 27a39b261..75b6aff70 100644 --- a/src/appl/gssftp/ftp/Makefile.in +++ b/src/appl/gssftp/ftp/Makefile.in @@ -5,8 +5,10 @@ CFLAGS = -DGSSAPI -DFTP_BUFSIZ=10240 $(CCOPTS) $(DEFS) $(LOCALINCLUDE) PROG_LIBPATH=-L$(TOPLIBD) PROG_RPATH=$(KRB5_LIBDIR) -SRCS = cmds.c cmdtab.c domacro.c ftp.c getpass.c glob.c main.c pclose.c \ - radix.c ruserpass.c secure.c +SRCS = $(srcdir)/cmds.c $(srcdir)/cmdtab.c $(srcdir)/domacro.c \ + $(srcdir)/ftp.c $(srcdir)/getpass.c $(srcdir)/glob.c \ + $(srcdir)/main.c $(srcdir)/pclose.c $(srcdir)/radix.c \ + $(srcdir)/ruserpass.c $(srcdir)/secure.c OBJS = cmds.o cmdtab.o domacro.o ftp.o getpass.o glob.o main.o pclose.o \ diff --git a/src/appl/gssftp/ftpd/ChangeLog b/src/appl/gssftp/ftpd/ChangeLog index 2506b76d5..9b4ca1e05 100644 --- a/src/appl/gssftp/ftpd/ChangeLog +++ b/src/appl/gssftp/ftpd/ChangeLog @@ -1,3 +1,7 @@ +Sun Aug 17 14:24:09 1997 Ezra Peisach + + * Makefile.in (SRCS): Add $(srcdir) where needed. + Wed Jul 16 19:03:18 1997 Theodore Y. Ts'o * ftpd.M: Fix name of srvtab file to be krb5.keytab. diff --git a/src/appl/gssftp/ftpd/Makefile.in b/src/appl/gssftp/ftpd/Makefile.in index 2905352e3..b08d68d92 100644 --- a/src/appl/gssftp/ftpd/Makefile.in +++ b/src/appl/gssftp/ftpd/Makefile.in @@ -10,11 +10,12 @@ SETENVOBJ=@SETENVOBJ@ LIBOBJS=@LIBOBJS@ COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a -SRCS = ftpd.c ftpcmd.y logwtmp.c popen.c vers.c \ - $(srcdir)../ftp/glob.c \ - $(srcdir)../ftp/radix.c \ - $(srcdir)../ftp/secure.c \ - $(srcdir)../../bsd/getdtablesize.c $(SETENVSRC) +SRCS = $(srcdir)/ftpd.c ftpcmd.c $(srcdir)/logwtmp.c $(srcdir)/popen.c \ + $(srcdir)/vers.c \ + $(srcdir)/../ftp/glob.c \ + $(srcdir)/../ftp/radix.c \ + $(srcdir)/../ftp/secure.c \ + $(srcdir)/../../bsd/getdtablesize.c $(SETENVSRC) OBJS = ftpd.o ftpcmd.o glob.o popen.o logwtmp.o vers.o radix.o \ secure.o $(LIBOBJS) $(SETENVOBJ)