1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

merge: don't hardcode path to gencat

This commit is contained in:
Nina Didenko 2019-11-05 20:45:43 +03:00 committed by Jon Trulson
parent 52caa8b8e6
commit de7fe55d6a

View file

@ -240,7 +240,7 @@ void cat_open (void)
if(pfile != NULL)
{
sprintf(line,"/usr/bin/gencat ./.dt_pfile.cat %s",pfile);
sprintf(line,"gencat ./.dt_pfile.cat %s",pfile);
if ( system(line) != 0 )
{
fatal("primary .tmsg file would not gencat\n",0,9);
@ -251,7 +251,7 @@ void cat_open (void)
if(dfile != NULL)
{
sprintf(line,"/usr/bin/gencat ./.dt_dfile.cat %s",dfile);
sprintf(line,"gencat ./.dt_dfile.cat %s",dfile);
if ( system(line) != 0 )
{
fatal("default .tmsg file would not gencat\n",0,9);