Missing file causes Make error
Here is what I did git clone https://github.com/moriyoshi/libmbfl.git cd libmbfl ./buildconf ./configure --prefix=/usr/lib/libmbfl make
......
libtool: link: ( cd ".libs" && rm -f "libmbfl_filters.la" && ln -s "../libmbfl_filters.la" "libmbfl_filters.la" )
make[2]: Leaving directory /root/downloads/libmbfl/filters' Making all in mbfl make[2]: Entering directory/root/downloads/libmbfl/mbfl'
gawk -v TABLE_NAME=mbfl_eaw_table -f mk_eaw_tbl.awk EastAsianWidth.txt > eaw_table.h
gawk: mk_eaw_tbl.awk:13: fatal: cannot open file EastAsianWidth.txt' for reading (No such file or directory) make[2]: *** [eaw_table.h] Error 2 make[2]: Leaving directory/root/downloads/libmbfl/mbfl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/downloads/libmbfl'
make: *** [all] Error 2
I have the same problem. Is this easily solved? Nobody has commented on it for two years...
i think fix is to add the new .txt file to this list: https://github.com/moriyoshi/libmbfl/blob/master/filters/Makefile.am#L265
Thanks for the quick reply!