From: John Gilmore Date: Mon, 14 Oct 1991 21:23:05 +0000 (+0000) Subject: Don't assume . is on the path. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a7a7b848a5bcc5a9f481ce2fe45458c169835a77;p=binutils-gdb.git Don't assume . is on the path. --- diff --git a/bfd/doc/Makefile b/bfd/doc/Makefile index f098df2dd3d..5dd2f5e4630 100755 --- a/bfd/doc/Makefile +++ b/bfd/doc/Makefile @@ -1,19 +1,19 @@ .SUFFIXES: .texi .o .c .h .p .ip VPATH=.. .c.texi: - scanit $< $@ + ./scanit $< $@ .h.texi: - scanit $< $@ + ./scanit $< $@ .c.p: - scanph $< $@ + ./scanph $< $@ .h.p: - scanph $< $@ + ./scanph $< $@ .c.ip: - scanph -i $< $@ + ./scanph -i $< $@ # main GDB source directory srcdir = ..