Message-Id: <200007211501.SAA03777@mailgw1.netvision.net.il> Date: Fri, 21 Jul 2000 18:01:23 +0200 To: john_watkins AT talk21 DOT com X-Mailer: Emacs 20.6 (via feedmail 8.2.emacs20_6 I) and Blat ver 1.8.5b From: "Eli Zaretskii" CC: djgpp AT delorie DOT com In-reply-to: <000801bff30c$9a50b1c0$f30578d5@oemcomputer> (john_watkins AT talk21 DOT com) Subject: Re: extra fonts for groff References: <000801bff30c$9a50b1c0$f30578d5 AT oemcomputer> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: "john watkins" > Date: Fri, 21 Jul 2000 13:09:20 +0100 > > The command > > make -f generate\makefile afmdir=c:\grafm > > produces the following > > afmtodit -dgenerate/../DESC -e generate/../text.enc \=20 > 'generate/afmname c:\grafm/AvantGarde-Demi.afm' generate/textmap AB > C:\DJGPP\BIN/sed.exe: cant read afmtodit: No such file or directory Sorry, I don't have a clue, and I cannot try to reproduce this because I don't have the AFM fonts. So you will have to dig deeper. In particular, I don't understand how does Sed come into play here: as far as I could see, neither afmtodit nor afmname invoke Sed, and generate/Makefile doesn't invoke Sed for the AB font. So I'm at a loss how come Sed complains here, and what command line is used to invoke Sed. A few small pieces of advice that might help: - use forward slashes wherever you can, for example: make -f generate/makefile afmdir=c:/grafm - try dropping the drive letter (some scripts aren't ready for DOS-style file names), like this: make -f generate/makefile afmdir=/grafm - make sure you have Sh-utils and Gawk installed (afmname requires them), as well as Bash.