[gnu.gdb.bug] error in gdb-3.0/munch

grunwald@M.CS.UIUC.EDU (Dirk Grunwald) (12/23/88)

On many systems (UMAX for one), you need to tell it explicitly to
include the current directory if you're compiling in another directory.

*** /tmp/,RCSt1004886	Thu Dec 22 13:21:43 1988
--- munch	Thu Dec 22 12:16:50 1988
***************
*** 11,17 ****
  $cookie
  #endif
  !
! if (cc -E /tmp/munch$$.c | grep "^$cookie" > /dev/null)
  then
  	TYPE=USG
  else
--- 11,17 ----
  $cookie
  #endif
  !
! if (cc -E -I. /tmp/munch$$.c | grep "^$cookie" > /dev/null)
  then
  	TYPE=USG
  else