diff options
author | John Gilmore <gnu@cygnus> | 1991-10-14 21:23:05 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-14 21:23:05 +0000 |
commit | a7a7b848a5bcc5a9f481ce2fe45458c169835a77 (patch) | |
tree | 8829af729a229006f8a79392730eac576e5e7ab7 /bfd/doc | |
parent | 440d9834411b10cd6e1b98447c3f95805f6957bb (diff) | |
download | gdb-a7a7b848a5bcc5a9f481ce2fe45458c169835a77.zip gdb-a7a7b848a5bcc5a9f481ce2fe45458c169835a77.tar.gz gdb-a7a7b848a5bcc5a9f481ce2fe45458c169835a77.tar.bz2 |
Don't assume . is on the path.
Diffstat (limited to 'bfd/doc')
-rwxr-xr-x | bfd/doc/Makefile | 10 |
1 files 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 = .. |