Mail Archives: djgpp/2000/06/22/18:42:56
> Date: Thu, 22 Jun 2000 14:44:13 -0500 (CDT)
> From: Jeff Williams <jeffw AT darwin DOT sfbr DOT org>
>
> Ok, suppose I do the same and include `mkinstal' in an (8.3-style)
> distro that I build? If I then install it on a Unix box, I get the
> short name `mkinstal' and makefiles that look for `mkinstalldirs' will
> complain.
>
> Is there a recommended means of handling this problem when building
> an 8.3-style distro that will be extracted on a Unix box?
I'm doing this all the time: most of the zip archives I prepare for
DJGPP ports are done on a plain DOS machine, but they work on Windows
and Unix as well.
The trick is simple: if you say "zip foo.zip ALongFileName.Extension",
Zip records the long file name in the archive if it can find a file
alongfil.ext. So what I suggest to do is to prepare a file with the
list of all the files you want to archive, in their long form, and
then say "zip -9 foo.zip @files.lst".
- Raw text -