From: John Gilmore Date: Mon, 14 Oct 1991 21:23:05 +0000 (+0000) Subject: Don't assume . is on the path. X-Git-Tag: gdb-4_18~23416 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7a7b848a5bcc5a9f481ce2fe45458c169835a77;p=platform%2Fupstream%2Fbinutils.git Don't assume . is on the path. --- diff --git a/bfd/doc/Makefile b/bfd/doc/Makefile index f098df2..5dd2f5e 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 = ..