Kern, Thomas wrote:
Making all in sql
make[2]: Entering directory `/usr/src/packages/BUILD/mysql-5.0.26/sql'
d --debug --verbose sql_yacc.yy
make[2]: d: Command not found
make[2]: [sql_yacc.cc] Error 127 (ignored)

Okay, here, YACC didn't run correctly. What the heck is "d" as a command?
Either a temp script or something, but whatever it is, it wasn't found. The
Makefile was written to continue on errors, so it continued.
if test -f y.tab.h; then \
  to=`echo "sql_yacc_H" | sed \
                -e
'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
                -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g'`; \
  sed -e "/^#/!b" -e "s/Y_TAB_H/$to/g" -e "s|y\.tab\.h|sql_yacc.h|" \
            y.tab.h >sql_yacc.ht; \
  rm -f y.tab.h; \
  if cmp -s sql_yacc.ht sql_yacc.h; then \
    rm -f sql_yacc.ht ;\
  else \
    mv sql_yacc.ht sql_yacc.h; \
  fi; \
fi
if test -f y.output; then \
  mv y.output sql_yacc.output; \
fi
sed '/^#/ s|y\.tab\.c|sql_yacc.cc|' y.tab.c >sql_yacc.cct && mv
sql_yacc.cct sql
sed: can't read y.tab.c: No such file or directory

So y.tab.c is not found, because that's output of YACC. You have a messed
up Makefile or something.


--
Jack J. Woehr            # I run for public office from time to time. It's like
http://www.well.com/~jax # working out at the gym, you sweat a lot, don't get
http://www.softwoehr.com # anywhere, and you fall asleep easily afterwards.

----------------------------------------------------------------------
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

Reply via email to