diff options
author | Ezra Peisach <epeisach@mit.edu> | 1995-09-27 15:49:59 +0000 |
---|---|---|
committer | Ezra Peisach <epeisach@mit.edu> | 1995-09-27 15:49:59 +0000 |
commit | c291a0411535bab6f7ee34bd021e2ed609501847 (patch) | |
tree | 3219c3fcf1024cc946f3441449ec81097538658c /src | |
parent | 7d742595d5a2ab3f8d64889c27d8a5b2eb892bf8 (diff) | |
download | krb5-c291a0411535bab6f7ee34bd021e2ed609501847.tar.gz krb5-c291a0411535bab6f7ee34bd021e2ed609501847.tar.xz krb5-c291a0411535bab6f7ee34bd021e2ed609501847.zip |
Change install: to install-unix: so that the destination directories are
created first.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6873 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 504661d4c..1353cf7dd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 27 11:47:38 1995 Ezra Peisach <epeisach@kangaroo.mit.edu> + + * Makefile.in (install-unix): Changed install to install-unix so + that the installation directories are created first. + Mon Sep 25 16:32:57 1995 Theodore Y. Ts'o <tytso@dcl> * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the diff --git a/src/Makefile.in b/src/Makefile.in index b9a74d8bc..0af7b5fb7 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -41,7 +41,7 @@ INSTALLMKDIRS = $(KRB5ROOT) $(KRB5MANROOT) $(KRB5OTHERMKDIRS) \ $(FILE_MANDIR) $(KRB5_LIBDIR) $(KRB5_INCDIR) \ $(KRB5_INCSUBDIRS) -install:: install-mkdirs +install-unix:: install-mkdirs install-mkdirs: @for i in $(INSTALLMKDIRS); do \ |