Changeset 6b3be72 for app/dist/common/utt_make_config.pl
- Timestamp:
- 05/07/08 20:30:20 (17 years ago)
- Branches:
- master, help
- Children:
- 10c74af
- Parents:
- a7b254c
- git-author:
- pawelk <pawelk@…> (05/07/08 20:30:20)
- git-committer:
- pawelk <pawelk@…> (05/07/08 20:30:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/dist/common/utt_make_config.pl
r19dfa5c r6b3be72 20 20 conf_gue(catfile($usr_home, 'gue.conf'), $sys_home); 21 21 conf_lem(catfile($usr_home, 'lem.conf'), $sys_home); 22 conf_mar(catfile($usr_home, 'mar.conf'), $sys_home); 22 23 conf_ser(catfile($usr_home, 'ser.conf'), $sys_home); 23 24 conf_dgc(catfile($usr_home, 'dgc.conf'), $sys_home); … … 86 87 print FILE makeConfigHeader(); 87 88 print FILE "macros=", abs_path("$utthome/lib/utt/terms.m4"), "\n"; 89 print FILE "tags=uam\n"; 88 90 89 91 close FILE; … … 146 148 } 147 149 150 sub conf_mar() { 151 my $mar_file = shift; 152 my $utthome = shift; 153 open(FILE, ">$mar_file"); 154 155 print FILE makeConfigHeader(); 156 print FILE "tags=uam\n"; 157 158 close FILE; 159 } 160 148 161 sub conf_ser() { 149 162 my $ser_file = shift; … … 154 167 print FILE "macros=", abs_path("$utthome/lib/utt/terms.m4"), "\n"; 155 168 print FILE "flex-template=", abs_path("$utthome/lib/utt/ser.l.template"), "\n"; 169 print FILE "tags=uam\n"; 156 170 157 171 close FILE;
Note: See TracChangeset
for help on using the changeset viewer.