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:
parent
52caa8b8e6
commit
de7fe55d6a
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue