Message-Id: <200001151715.LAA12151@darwin.sfbr.org> Date: Sat, 15 Jan 2000 11:15:45 -0600 (CST) From: Jeff Williams Subject: building GNU time-1.7 under djgpp To: djgpp AT delorie DOT com MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Content-MD5: glsbZwSOggsfefEuwkkWqw== X-Mailer: dtmail 1.3.0 @(#)CDE Version 1.3.4 SunOS 5.7 sun4u sparc Reply-To: djgpp AT delorie DOT com GNU time-1.7 built right out of the box on my djgpp setup, except for the section of the makefile that installs the info file---the file `time.info' isn't found on my 8.3 system (although every other LFN in this build was handled okay). From the makefile: ./mkinstalldirs /temp/info for file in time.info; do \ for ifile in `cd . && echo $file*`; do \ c:/djgpp/bin/ginstall -c -m 644 ./$ifile /temp/info/$ifile; \ done; \ done and the result on my system when I run `make install': c:/djgpp/bin/ginstall: ./time.info*: No such file or directory (ENOENT) make.exe: *** [install-info] Error 1 Is there a simple, or canonical, way to deal with this situation? Relatedly: % ls time.inf time.inf % ls time.info time.info % ls time.infinity time.infinity What is going on here? The only file truly present is `time.inf'. TIA---jtw