diff options
author | Ken Raeburn <raeburn@mit.edu> | 2002-06-25 21:03:36 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2002-06-25 21:03:36 +0000 |
commit | 2bc85459497ccd45861460e99725d680bcdc4053 (patch) | |
tree | cc3315a9aff4728227ecc917f80e261e1e08a27e /src | |
parent | 99c69a712b10152a895bf9f9897d0306fafca8e6 (diff) | |
download | krb5-2bc85459497ccd45861460e99725d680bcdc4053.tar.gz krb5-2bc85459497ccd45861460e99725d680bcdc4053.tar.xz krb5-2bc85459497ccd45861460e99725d680bcdc4053.zip |
* Makefile.in (ksu): Don't use krb5util library
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14570 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/clients/ksu/ChangeLog | 4 | ||||
-rw-r--r-- | src/clients/ksu/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/clients/ksu/ChangeLog b/src/clients/ksu/ChangeLog index d905da262c..21daf67c9f 100644 --- a/src/clients/ksu/ChangeLog +++ b/src/clients/ksu/ChangeLog @@ -1,3 +1,7 @@ +2002-06-25 Ken Raeburn <raeburn@mit.edu> + + * Makefile.in (ksu): Don't use krb5util library. + 2002-06-21 Ezra Peisach <epeisach@bu.edu> * ccache.c (printtime): Do not assume that krb5_timestamp and diff --git a/src/clients/ksu/Makefile.in b/src/clients/ksu/Makefile.in index e1eec9388e..c7d4029716 100644 --- a/src/clients/ksu/Makefile.in +++ b/src/clients/ksu/Makefile.in @@ -27,8 +27,8 @@ OBJS = \ all:: ksu -ksu: $(OBJS) $(KRB5_BASE_DEPLIBS) $(UTIL_DEPLIB) - $(CC_LINK) -o $@ $(OBJS) $(UTIL_LIB) $(KRB5_BASE_LIBS) $(KSU_LIBS) +ksu: $(OBJS) $(KRB5_BASE_DEPLIBS) + $(CC_LINK) -o $@ $(OBJS) $(KRB5_BASE_LIBS) $(KSU_LIBS) clean:: $(RM) ksu |