Hi, i've played a little bit with the template application sample in the examples folder. Running make end in errors when executing the dthelptag command (linux system). This depends on the systems default shell (bash). dthelptag is a korn shell (ksh) script, but the interpreter tag is "#!/bin/sh", so the default shell is used. It results in a core dump. One solution: replace "#!/bin/sh" with "#!/bin/ksh" (1st line of dthelptag) or run the make command from ksh
# ksh $ make -f Makefile.Linux $ ^D The second error depends on the message file (.msg) syntax, gencat understands (linux version). There must be a space behind the comment char ("$"). There a some comment lines at the top of "C/template.msg" with a single '$'. Replace it with "$ " and make will do it's work. If one could tell me where to find a simple diff/patch tutorial/example, I would attach the .patch-files in future. Regards, Bernd ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ cdesktopenv-devel mailing list cdesktopenv-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel