summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-12-08 03:50:22 (GMT)
committerhobbs <hobbs>1999-12-08 03:50:22 (GMT)
commitc4b020730abcc6251181bde30d27a73dc98dc538 (patch)
tree41e628be852f41cb717a6399663a5f4bd7b2f488 /unix
parentc8b04b0da22061d0432a1dcb7378f80018ded6ac (diff)
downloadtcl-c4b020730abcc6251181bde30d27a73dc98dc538.zip
tcl-c4b020730abcc6251181bde30d27a73dc98dc538.tar.gz
tcl-c4b020730abcc6251181bde30d27a73dc98dc538.tar.bz2
* unix/Makefile.in: fixed make gendate to swap const with CONST
so it uses the Tcl defined CONST type [Bug: 3521]
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 8ae2101..97a9d16 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.49 1999/11/13 01:35:43 wart Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.50 1999/12/08 03:50:22 hobbs Exp $
VERSION = @TCL_VERSION@
@@ -460,10 +460,10 @@ topDirName:
gendate:
yacc -l $(GENERIC_DIR)/tclGetDate.y
sed -e 's/yy/TclDate/g' -e '/^#include <values.h>/d' \
- -e 's?SCCSID?RCS: @(#) $$Id: Makefile.in,v 1.49 1999/11/13 01:35:43 wart Exp $$?' \
+ -e 's?SCCSID?RCS: @(#) $$Id: Makefile.in,v 1.50 1999/12/08 03:50:22 hobbs Exp $$?' \
-e '/#ifdef __STDC__/,/#endif/d' -e '/TclDateerrlab:/d' \
-e '/TclDatenewstate:/d' -e '/#pragma/d' \
- -e '/#include <inttypes.h>/d' \
+ -e '/#include <inttypes.h>/d' -e 's/const /CONST /g' \
<y.tab.c >$(GENERIC_DIR)/tclDate.c
rm y.tab.c