summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorKeith Vetter <keithv@fusion.com>1995-04-27 18:32:50 +0000
committerKeith Vetter <keithv@fusion.com>1995-04-27 18:32:50 +0000
commit43552077fe99875e6a6d901147718a2e1efa519f (patch)
treef2ea601563621bdfbd20fb064825b4afefd53675 /src/lib
parent399405e4a7fcfd35f4816f80b29ea85a23ac2cf4 (diff)
downloadkrb5-43552077fe99875e6a6d901147718a2e1efa519f.tar.gz
krb5-43552077fe99875e6a6d901147718a2e1efa519f.tar.xz
krb5-43552077fe99875e6a6d901147718a2e1efa519f.zip
Fixed PC makefile bug with passing wrong macro on recursive makes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5553 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/gssapi/ChangeLog4
-rw-r--r--src/lib/gssapi/Makefile.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/src/lib/gssapi/ChangeLog b/src/lib/gssapi/ChangeLog
index 9ca4547e8..de33344fc 100644
--- a/src/lib/gssapi/ChangeLog
+++ b/src/lib/gssapi/ChangeLog
@@ -1,3 +1,7 @@
+Wed Apr 26 14:39:18 1995 Keith Vetter (keithv@fusion.com)
+
+ * Makefile.in: passed wrong macro on the recursive makes.
+
Tue Mar 21 19:08:51 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: changed the name of the library the PC
diff --git a/src/lib/gssapi/Makefile.in b/src/lib/gssapi/Makefile.in
index 86216482b..24d3ffc17 100644
--- a/src/lib/gssapi/Makefile.in
+++ b/src/lib/gssapi/Makefile.in
@@ -32,10 +32,10 @@ clean-windows::
all-windows::
cd generic
@echo Making in gssapi\generic
- -$(MAKE) -$(MFLAGS) LIB=$(LIB)
+ -$(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD)
cd ..\krb5
@echo Making in gssapi\krb5
- -$(MAKE) -$(MFLAGS) LIB=$(LIB)
+ -$(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD)
cd ..
clean-windows::
@@ -46,5 +46,5 @@ clean-windows::
@echo Making clean in gssapi\krb5
-$(MAKE) -$(MFLAGS) clean
cd ..
- @echo Making clean locally
+ @echo Making clean in gssapi