>>> SCREEN: INSTALLING:
>>> * Sometimes getting the "caution: excluded filename not matched:
>>> SOURCE/*" when answered No to both questions. Seems odd. When selecting
>>> to not install sources, no messages related to them are expected.
>>
>> That message comes from the Unzip program. I got that too, during
>> testing, but I rebuilt the zip file it was complaining about, and the
>> error didn't reappear. I think the problem was mixed case in the zip
>> package file.
>
> Ah, now I think I know what you mean. I think that should be easily
> fixable by using -C (or, as I typically do, "set UNZIP=-C"). Info-Zip
> is pretty *nix-oriented in portability (as always), so they default to
> case sensitive and (unlike PKZIP) compress with lowercase filenames.
> But of course DOS (FAT) doesn't care.
>



Thanks for the suggestion, but "-C" was already being used in pkginst.c.
:-)



  /* unzip */

  if (do_source)
    {
      /* cputs ("DEBUG: include source code"); */
      sprintf (command, "UNZIP -q -o %s -d %s", filename, dest);
    }
  else
    {
      /* cputs ("DEBUG: skip source code"); */
      sprintf (command, "UNZIP -q -o -C %s -x SOURCE\\* -d %s", filename, dest);
    }
  ret = system (command);

------------------------------------------------------------------------------
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
_______________________________________________
Freedos-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freedos-devel

Reply via email to