The current wconfig.c does not treat @MAINT@ as a comment. Until we
authorJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 15 Mar 2005 06:35:29 +0000 (06:35 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 15 Mar 2005 06:35:29 +0000 (06:35 +0000)
have one that does, override the use of @MAINT@ on Windows.

ticket: 2962

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17128 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/Makefile.in

index 8a60cabac4d9994464cf380ef5b35a338f746b89..f5cbe7b64e4dc990d332792c71685a2b0c31089e 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-14  Jeffrey Altman <jaltman@mit.edu>
+
+        * Makefile.in: fix maintainer mode since it is not supported on 
+          Windows.
+
 2005-03-03  Ken Raeburn  <raeburn@mit.edu>
 
        * x-deltat.y (tok_WS): Renamed terminal from "WS", which conflicts
index f4e12a11adb219bf3baac850ca496c3a9298824a..633e1d38f5c49a8c068f0ae4cbcecb30ca01a9cf 100644 (file)
@@ -277,7 +277,10 @@ SRCS=      $(srcdir)/addr_comp.c   \
 # Someday, when we have a "maintainer mode", do this right:
 BISON=bison
 BISONFLAGS=-v # -v -> .output; -d -> .h
-$(srcdir)/deltat.c : @MAINT@ x-deltat.y
+DELTAT_DEP=@MAINT@ x-deltat.y
+##WIN32##DELTAT_DEP=
+
+$(srcdir)/deltat.c : $(DELTAT_DEP)
        $(BISON) $(BISONFLAGS) -o $(srcdir)/deltat.c $(srcdir)/x-deltat.y
 
 ##DOS##LIBOBJS = $(OBJS)