Open andreasstieger opened 10 months ago
[ 4s] + ./configure [...] --prefix=/usr [...]
Due to Makefile
Makefile
cp *.conf $(DESTDIR)$(prefix)/etc
this installs into /usr/etc/unicode-names.conf, while the code assumes /etc/unicode-names.conf always.
/usr/etc/unicode-names.conf
/etc/unicode-names.conf
yeah, I need to figure out how to use prefix within my code.
Leaving this one open till I can deal with it.
Thanks for reporting it.
[ 4s] + ./configure [...] --prefix=/usr [...]
Due to
Makefile
cp *.conf $(DESTDIR)$(prefix)/etc
this installs into
/usr/etc/unicode-names.conf
, while the code assumes/etc/unicode-names.conf
always.