diff options
author | Keith Vetter <keithv@fusion.com> | 1995-03-28 07:33:29 +0000 |
---|---|---|
committer | Keith Vetter <keithv@fusion.com> | 1995-03-28 07:33:29 +0000 |
commit | e3f7fe918ea047bd60c925a09da72a3d7d6c8e87 (patch) | |
tree | dc536f1469afb81841062e476f5af0088450d9c1 | |
parent | 45b2e3a579229c8cc7cd8557d3fb6270c5715b86 (diff) | |
download | krb5-e3f7fe918ea047bd60c925a09da72a3d7d6c8e87.tar.gz krb5-e3f7fe918ea047bd60c925a09da72a3d7d6c8e87.tar.xz krb5-e3f7fe918ea047bd60c925a09da72a3d7d6c8e87.zip |
Fixed typo in windows makefile
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5282 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r-- | src/windows/ChangeLog | 4 | ||||
-rw-r--r-- | src/windows/makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/windows/ChangeLog b/src/windows/ChangeLog index 76b2f31fa..32b38e6b1 100644 --- a/src/windows/ChangeLog +++ b/src/windows/ChangeLog @@ -1,3 +1,7 @@ +Mon Mar 27 23:34:58 1995 Keith Vetter (keithv@fusion.com) + + * makefile: fixed typo on the cd command + Mon Mar 27 20:34:58 1995 Keith Vetter (keithv@fusion.com) * makefile: makes recursively in wintel directory diff --git a/src/windows/makefile b/src/windows/makefile index 1fef7f0a1..80163378f 100644 --- a/src/windows/makefile +++ b/src/windows/makefile @@ -6,7 +6,7 @@ all:: cd cns -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD) @echo Making in windows\wintel - cd wintel + cd ..\wintel -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD) cd .. @@ -15,7 +15,7 @@ clean:: cd cns -$(MAKE) -$(MAKEFLAGS) clean @echo Making clean in windows\wintel - cd wintel + cd ..\wintel -$(MAKE) -$(MAKEFLAGS) clean cd .. |