Archive: Hidden files in Linux


Hidden files in Linux
Just discovered that makensis skips hidden files (which names start with period, like '.objects') while processing the 'File' instruction on Linux.


BTW I locally fixed this replacing the following line (5584) of script.cpp:


GLOB(lgss, GLOB_NOSORT, NULL, &globbuf);

with

GLOB(lgss, GLOB_NOSORT | GLOB_PERIOD, NULL, &globbuf);


Not sure this fix won't break anything else though...

Please submit a patch at the project page.