diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/krb5/ccache/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lib/krb5/ccache/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/krb5/ccache/ChangeLog b/src/lib/krb5/ccache/ChangeLog index 453f603ff..6492530ae 100644 --- a/src/lib/krb5/ccache/ChangeLog +++ b/src/lib/krb5/ccache/ChangeLog @@ -1,3 +1,8 @@ +2000-07-20 Danilo Almeida <dalmeida@mit.edu> + + * Makefile.in: Change ${CC} and ${OBJS} to $(CC) and $(OBJS) so + nmake does not freak out. + 2000-07-19 Ken Raeburn <raeburn@mit.edu> * cc_memory.c (mcc_head): Combine static declaration and diff --git a/src/lib/krb5/ccache/Makefile.in b/src/lib/krb5/ccache/Makefile.in index a98a393a2..c4e7d98d7 100644 --- a/src/lib/krb5/ccache/Makefile.in +++ b/src/lib/krb5/ccache/Makefile.in @@ -50,7 +50,7 @@ SRCS= $(srcdir)/ccbase.c \ all-unix:: all-libobjs t_stdio: t_stdio.o - ${CC} -o t_stdio ${OBJS} t_stdio.o + $(CC) -o t_stdio $(OBJS) t_stdio.o all-windows:: subdirs $(OBJFILE) |
