From: Jarkko Hietaniemi Date: Wed, 28 Oct 1998 15:07:54 +0000 (+0000) Subject: posix-bc doesn't want to regenerate a2p.h from a2p.y. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aa34f1896a2ee367bc51453b669f7c047ad1b32d;p=p5sagit%2Fp5-mst-13.2.git posix-bc doesn't want to regenerate a2p.h from a2p.y. p4raw-id: //depot/cfgperl@2110 --- diff --git a/Makefile.SH b/Makefile.SH index 351a47e..13f553d 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -694,7 +694,14 @@ os390|posix-bc) fi cd x2p rm -f y.tab.c - yacc -d a2p.y >/dev/null 2>&1 + case "$osname" in + os390) + yacc -d a2p.y >/dev/null 2>&1 + ;; + *) # e.g. posix-bc + yacc a2p.y >/dev/null 2>&1 + ;; + esac if cmp -s y.tab.c a2p.c then rm -f y.tab.c @@ -719,6 +726,9 @@ os390|posix-bc) vmesa) # Do nothing in VM/ESA. ;; +*) + echo "'$osname' is an EBCDIC system I don't know well." >&4 + ;; esac case "$xxx" in '') echo "No parser files were regenerated. That's okay." >&2 ;;