fixed bug in lst2fstext (compdic component)

conf/Makefile updated
This commit is contained in:
Tomasz Obrebski 2012-02-22 20:37:52 +01:00
parent e7de6cc88c
commit b242df28e5
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ clean:
.PHONY: install
install:
ifdef CONF_DIR
install -m 0644 compiledic.conf $(CONF_DIR)
install -m 0644 compdic.conf $(CONF_DIR)
install -m 0644 cor.conf $(CONF_DIR)
install -m 0644 dgc.conf $(CONF_DIR)
install -m 0644 dgp.conf $(CONF_DIR)
@ -31,7 +31,7 @@ endif
.PHONY: uninstall
uninstall:
ifdef CONF_DIR
rm $(CONF_DIR)/compiledic.conf
rm $(CONF_DIR)/compdic.conf
rm $(CONF_DIR)/cor.conf
rm $(CONF_DIR)/dgc.conf
rm $(CONF_DIR)/dgp.conf

View File

@ -12,7 +12,7 @@ while(<>)
@cs = split('');
++$s;
print "0 $s <eps>\n";
while($c = shift @cs)
for $c (@cs)
{
print $s . ' ' . ++$s . " $c\n";
}