22 lines
868 B
Diff
22 lines
868 B
Diff
|
diff -up sqlite-3.6.23/tool/lemon.c.system-template sqlite-3.6.23/tool/lemon.c
|
||
|
--- sqlite-3.6.23/tool/lemon.c.system-template 2010-03-10 16:40:35.000000000 +0200
|
||
|
+++ sqlite-3.6.23/tool/lemon.c 2010-03-10 16:40:39.000000000 +0200
|
||
|
@@ -3106,6 +3106,8 @@ PRIVATE FILE *tplt_open(struct lemon *le
|
||
|
tpltname = buf;
|
||
|
}else if( access(templatename,004)==0 ){
|
||
|
tpltname = templatename;
|
||
|
+ }else if( access("/usr/share/lemon/lempar.c", R_OK)==0){
|
||
|
+ tpltname = "/usr/share/lemon/lempar.c";
|
||
|
}else{
|
||
|
tpltname = pathsearch(lemp->argv0,templatename,0);
|
||
|
}
|
||
|
@@ -3117,7 +3119,7 @@ PRIVATE FILE *tplt_open(struct lemon *le
|
||
|
}
|
||
|
in = fopen(tpltname,"rb");
|
||
|
if( in==0 ){
|
||
|
- fprintf(stderr,"Can't open the template file \"%s\".\n",templatename);
|
||
|
+ fprintf(stderr,"Can't open the template file \"%s\".\n",tpltname);
|
||
|
lemp->errorcnt++;
|
||
|
return 0;
|
||
|
}
|