merge: don't hardcode path to gencat
This commit is contained in:
committed by
Jon Trulson
parent
52caa8b8e6
commit
de7fe55d6a
@@ -240,7 +240,7 @@ void cat_open (void)
|
|||||||
|
|
||||||
if(pfile != NULL)
|
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 )
|
if ( system(line) != 0 )
|
||||||
{
|
{
|
||||||
fatal("primary .tmsg file would not gencat\n",0,9);
|
fatal("primary .tmsg file would not gencat\n",0,9);
|
||||||
@@ -251,7 +251,7 @@ void cat_open (void)
|
|||||||
|
|
||||||
if(dfile != NULL)
|
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 )
|
if ( system(line) != 0 )
|
||||||
{
|
{
|
||||||
fatal("default .tmsg file would not gencat\n",0,9);
|
fatal("default .tmsg file would not gencat\n",0,9);
|
||||||
|
|||||||
Reference in New Issue
Block a user