Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!know!zaphod.mps.ohio-state.edu!sdd.hp.com!ucsd!hub.ucsb.edu!aks@hub.ucsb.edu From: aks@somewhere.ucsb.edu (Alan Stebbens) Newsgroups: comp.lang.perl Subject: Still problems in Patch 28 Summary: Patch#28 has problems Message-ID: <6113@hub.ucsb.edu> Date: 14 Aug 90 18:41:47 GMT Sender: news@hub.ucsb.edu Organization: CCSE, Univ. of CA, Santa Barbara Lines: 59 I just applied Patch#28 and did the Configure thing (is that like doing the "wild thing" on a computer? :^), and discovered that the "make depend" invocation failed on both the parent Makefile and the x2p/Makefile. It turns out that the "@ echo" statements were preceded by six blanks, rather than a tab character, which upsets the "make" on my DECStation 3100, under Ultrix 3.1. Here's a patch. Please note: the first set of lines are the old, incorrect lines, and there are six spaces between the '!' and the '@ echo' tokens, while the second set of lines are the new, correct lines, and there should be a single tab character between the '!' and '@'. You should verify this, since it may be possible that some mailers detabify the text. Alan Stebbens *** perl3.0p28/Makefile.SH.orig Tue Aug 14 11:33:58 1990 --- perl3.0p28/Makefile.SH Tue Aug 14 10:56:45 1990 *************** *** 288,295 **** touch perly.h perl.c: perl.y ! @ echo 'Expect either' 29 shift/reduce and 59 reduce/reduce conflicts... ! @ echo ' or' 27 shift/reduce and 61 reduce/reduce conflicts... $(YACC) -d perl.y mv y.tab.c perl.c mv y.tab.h perly.h --- 288,295 ---- touch perly.h perl.c: perl.y ! @ echo 'Expect either' 29 shift/reduce and 59 reduce/reduce conflicts... ! @ echo ' or' 27 shift/reduce and 61 reduce/reduce conflicts... $(YACC) -d perl.y mv y.tab.c perl.c mv y.tab.h perly.h *** perl3.0p28/x2p/Makefile.SH.orig Tue Aug 14 11:35:23 1990 --- perl3.0p28/x2p/Makefile.SH Tue Aug 14 10:59:46 1990 *************** *** 101,107 **** $(CC) $(LARGE) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p a2p.c: a2p.y ! @ echo Expect 226 shift/reduce conflicts... $(YACC) a2p.y mv y.tab.c a2p.c --- 101,107 ---- $(CC) $(LARGE) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p a2p.c: a2p.y ! @ echo Expect 226 shift/reduce conflicts... $(YACC) a2p.y mv y.tab.c a2p.c -- Alan Stebbens