From a7a7b848a5bcc5a9f481ce2fe45458c169835a77 Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Mon, 14 Oct 1991 21:23:05 +0000 Subject: [PATCH] Don't assume . is on the path. --- bfd/doc/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 = .. -- 2.7.4