Dominik Wallner <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]:
> Hi! > > I'm just stuck in the process of internationalizing one of my projects; > I did any changes to the source code, linked against libintl, and so on > following the GNU gettext manual. > > Now I'm at the point where I need a POT file generated by xgettext, but > it seems as if I had to list all source files manually; I couldn't > figure out how to have this done automatically. Make use of the --files-from switch. For example, if the source files in your project are in C, and have the extension ".c": find . -name "*.cs" -print > mylist then use --files-from=/path/to/mylist -- Dave Patton Canadian Coordinator, Degree Confluence Project http://www.confluence.org/ My website: http://members.shaw.ca/davepatton/ _______________________________________________ help-gnu-utils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gnu-utils
