summaryrefslogtreecommitdiff
path: root/ace/Makefile
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-11 04:27:31 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-11 04:27:31 +0000
commit63f0120419cc471c1629ad19e1f3166d13bbc48b (patch)
tree6ba2f51d599746a1924bb437fb16f7ea15fa7824 /ace/Makefile
parent3726d1e476ed1f17804369b7b78ac264bbf7939e (diff)
downloadATCD-63f0120419cc471c1629ad19e1f3166d13bbc48b.tar.gz
ChangeLogTag: Sat Nov 10 22:13:54 2001 Krishnakumar B <kitty@cs.wustl.edu>
Diffstat (limited to 'ace/Makefile')
-rw-r--r--ace/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Makefile b/ace/Makefile
index 5d884782cf6..2e80ce799cf 100644
--- a/ace/Makefile
+++ b/ace/Makefile
@@ -531,10 +531,11 @@ all.nested: all.local
Svc_Conf_y.cpp: Svc_Conf.y
if [ -f /pkg/gnu/bin/bison ]; then \
- /pkg/gnu/bin/bison -d Svc_Conf.y; \
+ /pkg/gnu/bin/bison -l -d Svc_Conf.y; \
sed -e "s/char \*getenv/char *ace_foo/g" \
-e "s/= getenv/= ACE_OS::getenv/g" \
-e "s/yy/ace_yy/g" \
+ -e "s/->ace_yyerrno/->yyerrno/g" \
-e "s/YY/ACE_YY/g" \
-e "s/Svc_Conf\.tab\.c/Svc_Conf_y.cpp/g" < Svc_Conf.tab.c > /tmp/$@; \
cp /tmp/$@ $@; \
@@ -547,7 +548,7 @@ Svc_Conf_y.cpp: Svc_Conf.y
Svc_Conf_l.cpp: Svc_Conf.l
if [ -f /pkg/gnu/bin/flex ]; then \
- /pkg/gnu/bin/flex -t -I Svc_Conf.l > $@; \
+ /pkg/gnu/bin/flex -L -t -I Svc_Conf.l > $@; \
sed -e "s/unistd/stdio/g" \
-e "s/yy/ace_yy/g" \
-e "s/YY/ACE_YY/g" \